: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;
}

/* ====== 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);
}
.container {
  max-width: 1200px;
  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.1;
}

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

.shape:nth-child(2) {
  width: 200px;
  height: 200px;
  background: #f9b43a;
  bottom: 20%;
  left: -100px;
  animation-delay: -2s;
}

.shape:nth-child(3) {
  width: 150px;
  height: 150px;
  background: #7c320c;
  top: 60%;
  right: 20%;
  animation-delay: -4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

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

.logo {
  font-size: 4rem;
  font-weight: bold;
  color: #7c320c;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  animation: glow 2s 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 30px rgba(249, 180, 58, 0.4);
  }
}

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

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

.feature-card:nth-child(1) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.6s;
}

/* Main Content Card */
.content-card {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  margin: 40px 20px;
  padding: 60px 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;
}

.content-text {
  font-size: 1.25rem;
  line-height: 2.2;
  color: #333;
  text-align: justify;
  position: relative;
  opacity: 1;
  visibility: visible;
}

/* Highlight Effects */
.highlight-1 {
  color: #f9b43a;
  font-weight: 700;
  position: relative;
  padding: 3px 6px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.highlight-2 {
  color: #7c320c;
  font-weight: 700;
  position: relative;
  padding: 3px 6px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.highlight-3 {
  color: #239cb6;
  font-weight: 700;
  position: relative;
  padding: 3px 6px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.highlight-1:hover,
.highlight-2:hover,
.highlight-3:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.05);
  text-shadow: 0 0 15px currentColor;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: all 0.3s ease;
}

.feature-card:nth-child(1)::before {
  background: #f9b43a;
}

.feature-card:nth-child(2)::before {
  background: #7c320c;
}

.feature-card:nth-child(3)::before {
  background: #239cb6;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
  height: 100%;
  opacity: 0.05;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

.feature-card:nth-child(1) .feature-icon {
  color: #f9b43a;
}

.feature-card:nth-child(2) .feature-icon {
  color: #7c320c;
}

.feature-card:nth-child(3) .feature-icon {
  color: #239cb6;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.feature-desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo {
    font-size: 3rem;
  }

  .content-card {
    margin: 20px 10px;
    padding: 40px 25px;
  }

  .content-text {
    font-size: 1.1rem;
    line-height: 1.9;
  }

  .features {
    grid-template-columns: 1fr;
    margin: 30px 10px;
  }

  .feature-card {
    padding: 30px 20px;
  }
}

/* Scroll Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9800, #ffc107); 
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
}

.feature-icon i {
  color: #fff;
  font-size: 28px;
}
