@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #3D518C;
  --secondary: #7692FF;
  --accent: #ABD2FA;
  --dark: #091540;
  --white: #ffffff;
}

body {
  font-family: 'Josefin Sans', sans-serif;
  background: #f5f6fa;
  color: #222;
  overflow-x: hidden;
}

/* ===== SECTION ===== */
section {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #0a1628 0%, #1a2a5e 100%);
  padding-bottom: 60px;
}

/* ===== HEADER ===== */
header {
  width: 100%;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(9,21,64,0.6);
  backdrop-filter: blur(6px);
  z-index: 10;
  position: relative;
}

.logo {
  height: 70px;
  width: auto;
}

.navigation a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 25px;
  transition: background 0.3s;
  margin-left: 10px;
}

.navigation a:hover {
  background: var(--secondary);
}

.navigation a.active {
  background: var(--primary);
  color: var(--white);
}

/* ===== ABOUT INTRO ===== */
.aboutinfo {
  text-align: center;
  padding: 60px 20px 30px;
}

.aboutinfo1 h2 {
  color: var(--accent);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 16px;
}

.aboutinfo1 .lead {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.aboutinfo1 p {
  color: #b0bcd8;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FEATURE CARDS ===== */
.container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 50px 40px;
}

.box {
  background: var(--white);
  width: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.boximage1,
.boximage2,
.boximage3 {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.boximage1 { background-image: url('image/about1.jpg'); }
.boximage2 { background-image: url('image/about2.jpg'); }
.boximage3 { background-image: url('image/about3.jpg'); }

.box h2 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  padding: 18px 20px 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.box p {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
  padding: 0 20px 20px;
  flex: 1;
}

/* ===== VIDEO SECTION ===== */
.vcontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px 50px;
}

.vcontainer .video1 {
  width: 100%;
  max-width: 720px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

/* ===== MOBILE MENU ===== */
#check { display: none; }
label { display: none; }

/* ===== FOOTER ===== */
.footer-distributed {
  background: #2d2a30;
  padding: 50px 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
  flex: 1 1 200px;
}

.footer-distributed h3 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 16px;
}

.footer-distributed h3 span { color: var(--secondary); }

.footer-links a {
  color: #ccc;
  text-decoration: none;
  display: inline-block;
  margin-right: 14px;
  margin-bottom: 8px;
  transition: color 0.3s;
}

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

.footer-copy {
  color: #8f9296;
  font-size: 13px;
  margin-top: 12px;
}

.footer-center div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-center i {
  background: #33383b;
  color: var(--white);
  font-size: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-center p {
  color: var(--white);
  font-size: 14px;
  line-height: 1.6;
}

.footer-center p span {
  display: block;
  font-size: 12px;
  color: #aaa;
}

.footer-company-about {
  color: #92999f;
  font-size: 13px;
  line-height: 1.7;
}

.footer-company-about span {
  display: block;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.footer-social a {
  background: #33383b;
  color: var(--white);
  width: 34px;
  height: 34px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: background 0.3s;
  text-decoration: none;
}

.footer-social a:hover { background: var(--secondary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  header { padding: 16px 24px; }
  .navigation { display: none; }
  label {
    display: block;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    z-index: 20;
    position: relative;
  }
  label .close-btn { display: none; }
  #check:checked ~ header .navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0; bottom: 0; left: 0; right: 0;
    background: rgba(9,21,64,0.95);
    z-index: 15;
    gap: 20px;
  }
  #check:checked ~ header .navigation a { font-size: 22px; margin: 0; }
  #check:checked ~ header label .menu-btn { display: none; }
  #check:checked ~ header label .close-btn {
    display: block;
    position: fixed;
    z-index: 20;
    top: 20px; right: 24px;
  }
}

@media (max-width: 600px) {
  .aboutinfo1 h2 { font-size: 36px; }
  .footer-distributed { padding: 30px 20px; flex-direction: column; }
  .box { width: 90%; }
}
