* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* =====================
   GLOBAL
===================== */
body {
    color: #f5f5f5;
    line-height: 1.7;
    background: #000000;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* =====================
   HEADER (WHITE)
===================== */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 100px;
}

nav a {
    color: #1f2933;
    margin-left: 22px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
}

nav a:hover {
    color: #c2410c;
}

/* =====================
   HERO
===================== */
.hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.85)),
        url("pics/hero-bg2.jpg");
    background-size: cover;
    background-position: center;
    padding: 160px 0;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.hero p {
    font-size: 18px;
    max-width: 720px;
    margin: auto;
    opacity: 0.9;
}

/* =====================
   PAGE HEADER (ABOUT)
===================== */
.page-header {
    background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.9)),
        url("pics/hero-bg2.jpg");
    background-size: cover;
    background-position: center;
    padding: 90px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    color: #c2410c;
    letter-spacing: 1px;
}

/* =====================
   SECTIONS
===================== */
.about-short,
.services,
.content {
    padding: 80px 0;
}

/* =====================
   ABOUT CONTENT
===================== */
.content h2 {
    margin-bottom: 14px;
    color: #c2410c;
    letter-spacing: 0.5px;
}

.content p {
    color: rgba(255,255,255,0.85);
    max-width: 850px;
    margin-bottom: 26px;
    font-size: 15.5px;
}

.content strong {
    color: #f59e0b;
}

.content ul {
    margin-left: 20px;
    margin-top: 10px;
}

.content ul li {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
}

.content ul li::marker {
    color: #c2410c;
}

/* =====================
   SERVICES
===================== */
.services {
    background: #000000;
    color: #f5f5f5;
}

.services h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 12px;
    color: #d68c0e;
}

.services p {
    text-align: center;
    max-width: 650px;
    margin: auto;
    opacity: 0.8;
}

/* =====================
   SLIDER
===================== */
.service-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 3.5rem;
}

.slide-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: service-scroll 28s linear infinite;
}

.service-slider:hover .slide-track {
    animation-play-state: paused;
}

@keyframes service-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Edge fade */
.service-slider::before,
.service-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 140px;
    height: 100%;
    z-index: 2;
}

.service-slider::before {
    left: 0;
    background: linear-gradient(to right, #000 0%, transparent 100%);
}

.service-slider::after {
    right: 0;
    background: linear-gradient(to left, #000 0%, transparent 100%);
}

/* =====================
   SERVICE CARD
===================== */
.service-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0.06)
    );
    backdrop-filter: blur(8px);
    border-radius: 22px;
    padding: 38px 42px;
    width: 280px;
    height: 220px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    flex: 0 0 auto;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.8);
}

.service-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #f59e0b;
    letter-spacing: 0.4px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

/* Hover */
.service-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9);
}

/* =====================
   FOOTER
===================== */
footer {
    background: #000000;
    color: rgba(255,255,255,0.75);
    padding: 35px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

footer p {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

.copyright {
    text-align: center;
}

/* =====================
   MISSION & VISION
===================== */
.about-mission {
    padding: 80px 0;
    background: #000;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #c2410c;
    letter-spacing: 0.8px;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Card Style */
.info-card {
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.16),
        rgba(255,255,255,0.06)
    );
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.75);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    letter-spacing: 0.6px;
}

/* Accent colors */
.info-card.vision h3 {
    color: #f59e0b; /* sunset gold */
}

.info-card.mission h3 {
    color: #d97706; /* warm orange */
}

.info-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
}

/* Hover effect */
.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 75px rgba(0,0,0,0.9);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
    .about-cards {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* === MODAL BACKGROUND === */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

/* === MODAL CONTENT === */
.modal-content {
  background: #0a0a0a;
  color: #f5f5f5;
  max-width: 700px;
  margin: 5% auto;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9);
  overflow-y: auto;
  max-height: 80vh;
}

.modal-content h2 {
  margin-bottom: 15px;
  color: #d68c0e;
}

.modal-content h4 {
  margin-top: 20px;
  color: #fbbf24;
}

.modal-content p {
  font-size: 14px;
  opacity: 0.9;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 28px;
  cursor: pointer;
  color: #ffffff;
}

/* Footer link */
footer a {
  color: #fbbf24;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.modal-note {
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.7;
}
