/* ==========================================================================
   ORIC CUI LAHORE - Modern Design System & CSS Stylesheet
   ========================================================================== */

:root {
  --oric-primary: #0f2a4a;
  --oric-primary-dark: #091b31;
  --oric-accent: #0076bf;
  --oric-accent-hover: #005a96;
  --oric-gold: #f59e0b;
  --oric-bg-light: #f8fafc;
  --oric-card-bg: #ffffff;
  --oric-text-dark: #1e293b;
  --oric-text-muted: #64748b;
  --oric-border: #e2e8f0;
  --oric-gradient-hero: linear-gradient(135deg, #0f2a4a 0%, #1e3a5f 50%, #0076bf 100%);
  --oric-shadow-sm: 0 2px 8px rgba(15, 42, 74, 0.06);
  --oric-shadow-md: 0 8px 24px rgba(15, 42, 74, 0.1);
  --oric-shadow-lg: 0 16px 36px rgba(15, 42, 74, 0.14);
}

body {
  font-family: 'Source Sans 3', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--oric-text-dark);
  background-color: var(--oric-bg-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Source Sans 3', sans-serif;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--oric-primary);
}

/* --- Top Utility Bar --- */
.oric-top-bar {
  background: var(--oric-primary-dark);
  color: #e2e8f0;
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.oric-top-bar a {
  color: #cbd5e1;
  text-decoration: none;
  margin-left: 14px;
  transition: color 0.2s ease;
}
.oric-top-bar a:hover {
  color: #ffffff;
}

/* --- Header Branding --- */
.oric-header-brand {
  background: #ffffff;
  padding: 16px 0;
  border-bottom: 1px solid var(--oric-border);
}
.oric-brand-logo {
  max-height: 60px;
  width: auto;
}
.oric-brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--oric-primary);
  line-height: 1.2;
}
.oric-brand-subtitle {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--oric-accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* --- Navigation Bar --- */
.oric-navbar {
  background: var(--oric-primary);
  box-shadow: var(--oric-shadow-md);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1020;
}
.oric-navbar .nav-link {
  color: #e2e8f0 !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 18px !important;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  position: relative;
  transition: color 0.25s ease, background-color 0.25s ease;
}
.oric-navbar .nav-link:hover,
.oric-navbar .nav-link.active {
  color: #ffffff !important;
  background-color: var(--oric-accent);
}
.oric-navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--oric-gold);
}

/* --- Hero Banner Section --- */
.oric-hero-banner {
  background: var(--oric-gradient-hero);
  color: #ffffff;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.oric-hero-banner::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 118, 191, 0.35) 0%, transparent 60%);
  pointer-events: none;
}
.oric-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.oric-hero-lead {
  font-size: 1.15rem;
  color: #e2e8f0;
  max-width: 800px;
}

/* --- Carousel Container --- */
.oric-carousel-wrapper {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--oric-shadow-lg);
  border: 1px solid var(--oric-border);
}
.oric-carousel .carousel-item {
  height: 420px;
}
@media (max-width: 768px) {
  .oric-carousel .carousel-item {
    height: 260px;
  }
}
.oric-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.oric-carousel-caption {
  background: rgba(15, 42, 74, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 3px solid var(--oric-gold);
  border-radius: 0 0 16px 16px;
  padding: 16px 22px;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: left;
}
.oric-carousel-caption h5 {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}
.oric-carousel-caption p {
  color: #f1f5f9 !important;
  font-weight: 500;
  font-size: 0.9rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* --- News Ticker Section --- */
.oric-news-ticker {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--oric-border);
  box-shadow: var(--oric-shadow-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.oric-news-badge {
  background: var(--oric-accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.oric-news-content {
  flex-grow: 1;
  padding: 10px 16px;
  overflow: hidden;
}
.oric-news-scroll {
  display: flex;
  align-items: center;
  animation: newsScroll 22s linear infinite;
  white-space: nowrap;
}
.oric-news-scroll:hover {
  animation-play-state: paused;
}
.oric-news-item {
  display: inline-flex;
  align-items: center;
  margin-right: 40px;
  font-weight: 600;
  color: var(--oric-primary);
}
.oric-news-item i {
  color: var(--oric-gold);
  margin-right: 8px;
}
@keyframes newsScroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* --- Feature Cards & Hallmarks --- */
.oric-card {
  background: var(--oric-card-bg);
  border-radius: 14px;
  border: 1px solid var(--oric-border);
  box-shadow: var(--oric-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  padding: 24px;
}
.oric-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--oric-shadow-md);
  border-color: var(--oric-accent);
}
.oric-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0, 118, 191, 0.1);
  color: var(--oric-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

/* --- Section Titles --- */
.oric-section-title {
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 10px;
}
.oric-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--oric-accent);
  border-radius: 2px;
}
.oric-section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* --- Image Frames & Gallery --- */
.oric-img-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--oric-shadow-md);
  border: 1px solid var(--oric-border);
}
.oric-img-frame img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}
.oric-img-frame:hover img {
  transform: scale(1.03);
}

/* --- Team Profile Cards --- */
.oric-team-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--oric-border);
  box-shadow: var(--oric-shadow-sm);
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.oric-team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--oric-shadow-lg);
}
.oric-team-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.oric-team-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--oric-primary);
  margin-bottom: 4px;
}
.oric-team-role {
  font-weight: 600;
  color: var(--oric-accent);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

/* --- Badges & Pills --- */
.oric-badge {
  background: rgba(0, 118, 191, 0.12);
  color: var(--oric-accent);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

/* --- Footer --- */
.oric-footer {
  background: var(--oric-primary-dark);
  color: #cbd5e1;
  padding-top: 48px;
  padding-bottom: 24px;
  border-top: 4px solid var(--oric-accent);
}
.oric-footer h5 {
  color: #ffffff;
  margin-bottom: 20px;
}
.oric-footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}
.oric-footer a:hover {
  color: #ffffff;
}
.oric-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 36px;
  padding-top: 20px;
  font-size: 0.88rem;
}
