:root {
  --brand: #2d6df6;
  --brand-2: #2dc8f6;
  --dark: #0f172a;
  --muted: #64748b;
  --bg: #0b1022;
  --card: #0f1530;
  --radius: 1.25rem;
  --radius-full: 999px;
  --transition: all 1s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", "Tahoma", sans-serif;
  background: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 0px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* Animated Background Elements */
.bg-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  opacity: 0.08;
}

.shape:nth-child(1) {
  width: 350px;
  height: 350px;
  background: #239cb6;
  top: 5%;
  right: -175px;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 250px;
  height: 250px;
  background: #f9b43a;
  bottom: 15%;
  left: -125px;
  animation-delay: -3s;
}

.shape:nth-child(3) {
  width: 180px;
  height: 180px;
  background: #7c320c;
  top: 50%;
  right: 15%;
  animation-delay: -6s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}
/* ====== NAVBAR ====== */
.navbar {
  position: sticky !important;
  top: 0;
  right: 0;
  z-index: 1000;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background-color: rgba(35, 155, 182, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

/* Logo */
.navbar img {
  position: relative;
  top: 5px;
  right: 210px;
  width: 60px;
  height: auto;
}
@media (max-width: 992px) {
  .navbar img {
    display: block;
    position: absolute;
    top: -10px;
    right: 180px;
    margin-inline-end: 0.75rem;
  }
}

/* Brand text */
.navbar-brand {
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff !important;
  margin-inline-end: 4.5rem;
}

/* Links */
.navbar-nav .nav-link {
  font-weight: 500;
  color: #f0f4f8 !important;
  transition: var(--transition);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
  color: #f9b43a !important;
}

/* Dropdown */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.dropdown-item {
  font-weight: 500;
  color: #222;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #fff !important;
}

/* Submenu RTL fix */
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: -0.25rem;
}
@media (min-width: 992px) {
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}

/* Navbar when scrolled */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.285) !important;
}

/* Toggler */
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* Header */
header {
  text-align: center;
  padding: 80px 20px 60px;
  position: relative;
}

.logo {
  font-size: 4rem;
  font-weight: bold;
  color: #7c320c;
  margin-bottom: 15px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 3px 3px 6px rgba(124, 50, 12, 0.3),
      0 0 20px rgba(249, 180, 58, 0.2);
  }
  to {
    text-shadow: 3px 3px 6px rgba(124, 50, 12, 0.3),
      0 0 35px rgba(249, 180, 58, 0.4);
  }
}

.page-title {
  font-size: 2.2rem;
  color: #239cb6;
  font-weight: 700;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.1rem;
  color: #7c320c;
  opacity: 0.9;
}

/* Main Content Card */
.content-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  margin: 40px 20px;
  padding: 50px 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  animation: slideUp 1s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.content-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #f9b43a, #239cb6, #7c320c);
  border-radius: 30px 30px 0 0;
}

/* Founders Message */
.founders-message {
  position: relative;
}

.message-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.message-header h2 {
  font-size: 2.5rem;
  color: #7c320c;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.message-content {
  line-height: 2.2;
  font-size: 1.2rem;
  color: #333;
  text-align: justify;
}

.message-content p {
  margin-bottom: 25px;
  position: relative;
  animation: fadeInParagraph 1s ease-out;
  animation-fill-mode: both;
}

.message-content p:nth-child(1) {
  animation-delay: 0.2s;
}
.message-content p:nth-child(2) {
  animation-delay: 0.4s;
}
.message-content p:nth-child(3) {
  animation-delay: 0.6s;
}
.message-content p:nth-child(4) {
  animation-delay: 0.8s;
}
.message-content p:nth-child(5) {
  animation-delay: 1s;
}
.message-content p:nth-child(6) {
  animation-delay: 1.2s;
}

@keyframes fadeInParagraph {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.opening-paragraph {
  font-size: 1.3rem !important;
  font-weight: 500;
  color: #444 !important;
  border-right: 4px solid #f9b43a;
  padding-right: 20px;
  margin-bottom: 35px !important;
}

/* Highlight Effects */
.highlight-1 {
  color: #f9b43a;
  font-weight: 600;
  position: relative;
}

.highlight-2 {
  color: #7c320c;
  font-weight: 600;
  position: relative;
}

.highlight-3 {
  color: #239cb6;
  font-weight: 600;
  position: relative;
}

/* Founders Signature */
.founders-signature {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid rgba(124, 50, 12, 0.2);
}

.signature-line {
  font-size: 1.8rem;
  font-weight: 700;
  color: #7c320c;
  margin-bottom: 10px;
}

.founder-name {
  transition: color 0.3s ease;
}

.founder-name:hover {
  color: #f9b43a;
}

.separator {
  margin: 0 15px;
  color: #239cb6;
}

.founders-title {
  font-size: 1.1rem;
  color: #666;
  font-style: italic;
}

/* Video Section */
.video-container {
  text-align: center;
  margin: 60px 0 20px;
  position: relative;
  overflow: hidden;
}
