/* ==============================================
   assets/css/main.css
   Webrise Technologies — Component Styles
   ============================================== */

/* ─── NAVBAR ──────────────────────────────────── */

/* ── Top Bar ── */
.header-topbar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.topbar-link:hover {
  color: var(--primary);
}

.topbar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.topbar-social:hover {
  color: var(--primary);
  background: var(--overlay-orange);
}

/* ── Main Navbar ── */
.site-header {
  background: var(--primary); /* Vibrant orange as requested */
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.main-navbar {
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar-brand .brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.brand-web {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
}
.brand-rise {
  color: var(--primary); /* Vibrant orange from logo */
  font-family: var(--font-heading);
  font-weight: 800;
}

.navbar-brand {
  padding: 0.5rem 0;
  margin-right: 2rem;
}

.navbar-brand img,
.navbar-logo-img {
  max-height: 50px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
  background: #fff; /* Ensures white background logo blends in */
  padding: 4px;
  border-radius: 4px;
}

.navbar-logo-img:hover {
  transform: scale(1.05);
}

/* ── Main navbar links ── */
.main-navbar .navbar-nav {
  gap: 0;
}

.main-navbar .nav-link {
  font-family: var(--font-body);
  font-weight: 700;
  color: #ffffff !important;
  padding: 1.5rem 1.15rem !important;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: #ffffff !important;
  border-bottom-color: #ffffff;
  background: rgba(0, 0, 0, 0.08);
}

.main-navbar .dropdown-toggle.nav-link:hover,
.main-navbar .dropdown-toggle.nav-link:focus {
  color: #ffffff !important;
  border-bottom-color: #ffffff;
}

/* ── Hover to open dropdown ── */
@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }
}

/* Dropdown styling - Brand Orange Theme */
.dropdown-menu {
  background: var(--primary); /* Orange as requested */
  border-radius: 0;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 0;
  min-width: 240px;
}

.dropdown-item {
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 1.25rem;
  color: #ffffff;
  transition: var(--transition-fast);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover,
.dropdown-item.active {
  background: #1c1c1c; /* Darker orange on hover */
  color: #ffffff;
}

/* ─── HERO SLIDER (Home Page) ─────────────────── */

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--dark);
}

.hero-swiper {
  width: 100%;
  height: 85vh; /* Large impactful height */
  min-height: 600px;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s ease-out;
}

.swiper-slide-active .hero-slide-bg {
  transform: scale(1.15); /* Subtle Ken Burns effect */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.85rem;
  font-weight: 700;
  color: #8bc34a; /* Lime green from user image */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.btn-hero-call {
  display: inline-flex;
  align-items: center;
  background: #3e7a1b; /* Darker green from button in image */
  color: #ffffff;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-call:hover {
  background: #4ea821;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(78, 168, 33, 0.3);
}

/* Stats bar below hero */
.hero-stats-bar {
  background: #ffffff;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.hero-stat-card .stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.hero-stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Swiper Customization */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after {
  font-size: 1.25rem;
  font-weight: bold;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: var(--primary);
}

.hero-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
  width: 30px;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-subtitle {
    font-size: 1.35rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-swiper {
    height: 70vh;
  }
}

#header-cta-btn {
  background: var(--dark); /* Black button as requested */
  border: none;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.65rem 1.25rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

#header-cta-btn:hover {
  background: var(--dark-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ─── HERO (page hero small banner) ──────────── */

.page-hero-sm {
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    var(--dark-secondary) 50%,
    #2a1a0a 100%
  );
  position: relative;
  overflow: hidden;
}

.page-hero-sm::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.18) 0%,
    transparent 70%
  );
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.min-vh-75 {
  min-height: 75vh;
}

/* ─── SECTION SPACING ─────────────────────────── */

.section-padding {
  padding: 5rem 0;
}

/* ─── BLOG POST CARDS ─────────────────────────── */

.card-post {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.card-post:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-xlight);
}

.post-thumb-link {
  display: block;
  overflow: hidden;
}

.post-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-post:hover .post-thumb {
  transform: scale(1.05);
}

.card-post-body {
  padding: 1.5rem;
}

.post-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.post-title a {
  color: var(--dark);
  transition: var(--transition-fast);
}

.post-title a:hover {
  color: var(--primary);
}

.post-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* ─── SINGLE POST ─────────────────────────────── */

.single-post .post-featured-img img {
  border-radius: var(--radius-lg);
}

.single-post .post-content,
.entry-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.entry-content p {
  margin-bottom: 1.2rem;
}
.entry-content a {
  color: var(--primary);
  text-decoration: underline;
}
.entry-content a:hover {
  color: var(--primary-dark);
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.entry-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  background: var(--overlay-orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--dark);
}

.post-nav-link {
  color: var(--dark);
  text-decoration: none;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: block;
}

.post-nav-link:hover {
  background: var(--overlay-orange);
  border-color: var(--primary-xlight);
  color: var(--primary);
}

/* ─── 404 PAGE ────────────────────────────────── */

.error-404-content .error-number {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  opacity: 0.9;
}

/* ─── SIDEBAR ─────────────────────────────────── */

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.sidebar-widget-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.recent-post-thumb img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.recent-post-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  transition: var(--transition-fast);
  text-decoration: none;
}

.recent-post-title:hover {
  color: var(--primary);
}

.sidebar-categories li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-categories li:last-child {
  border-bottom: none;
}

.sidebar-categories a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.sidebar-categories a:hover {
  color: var(--primary);
}

/* ─── COMMENTS ─────────────────────────────────── */

.comment-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-color);
}

.comment-author-name {
  font-size: 0.9rem;
}

.comment-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ─── FOOTER ─────────────────────────────────── */

.site-footer {
  background: #252525;
  color: #ffffff;
  position: relative;
}

.footer-top-bar {
  background: var(--primary); /* Orange accent from logo */
  height: 5px;
  width: 100%;
}

.footer-scroll-top {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--primary);
  border: 4px solid #252525;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
}

.footer-scroll-top:hover {
  background: var(--primary-light);
  transform: translate(-50%, -60%);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-contact-list li {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 2px;
}

.footer-contact-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list a:hover {
  color: var(--primary);
}

.footer-link-list li {
  margin-bottom: 0.75rem;
}

.footer-link-list a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.footer-link-list a i {
  font-size: 0.65rem;
  color: var(--primary);
}

.footer-link-list a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  background: #1c1c1c;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-circle:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* ─── FLOATING CONTACT BUTTONS ───────────────── */

.floating-contact-buttons {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1000;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn {
  background: #25d366;
}

.phone-btn {
  background: #ff1e1e;
}

.floating-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

/* ─── PAGINATION ──────────────────────────────── */

.nav-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.page-numbers.dots {
  background: none;
  border: none;
  pointer-events: none;
}

/* ─── BREADCRUMB ──────────────────────────────── */

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* ─── UTILITY ─────────────────────────────────── */

.fw-800 {
  font-weight: 800 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.ls-2 {
  letter-spacing: 0.2em;
}

.rounded-3 {
  border-radius: var(--radius-lg) !important;
}

/* ─── OFFCANVAS (mobile nav) ──────────────────── */

.offcanvas .nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link.active {
  color: var(--primary);
  background: var(--overlay-orange);
}

/* ─── FRONT PAGE — HERO ───────────────────────── */

.hero-section {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    #1a0e00 60%,
    #2d1500 100%
  );
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(249, 115, 22, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.1) 0%,
    transparent 70%
  );
  top: -200px;
  right: -150px;
  pointer-events: none;
  animation: heroFloat 8s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.08) 0%,
    transparent 70%
  );
  bottom: -80px;
  left: -80px;
  pointer-events: none;
  animation: heroFloat 10s ease-in-out infinite reverse;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

.hero-subtext {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 520px;
}

/* Hero floating visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 4rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.floating {
  animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

/* Hero stat cards */
.hero-stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.hero-stat-card:hover {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── FRONT PAGE — SECTION HEADER ────────────── */

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── FRONT PAGE — SERVICE CARDS ─────────────── */

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-xlight);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--overlay-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--primary);
  color: var(--white);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.service-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition-fast);
}

.service-link:hover {
  color: var(--primary-dark);
  gap: 0.5rem;
}

/* ─── FRONT PAGE — WHY US ─────────────────────── */

.why-card-main {
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    var(--dark-secondary) 60%,
    #2a1200 100%
  );
  box-shadow: var(--shadow-lg), var(--shadow-orange);
}

.why-point span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── AOS — simple fade-up ────────────────────── */

[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

[data-aos].aos-animated {
  opacity: 1;
  transform: translateY(0);
}

[data-aos][data-aos-delay="80"] {
  transition-delay: 80ms;
}
[data-aos][data-aos-delay="160"] {
  transition-delay: 160ms;
}
[data-aos][data-aos-delay="240"] {
  transition-delay: 240ms;
}
[data-aos][data-aos-delay="320"] {
  transition-delay: 320ms;
}
[data-aos][data-aos-delay="400"] {
  transition-delay: 400ms;
}

/* ─── RESPONSIVE TWEAKS ───────────────────────── */

@media (max-width: 991.98px) {
  .hero-section {
    padding: 5rem 0 4rem;
    min-height: auto;
  }
  .section-padding {
    padding: 3.5rem 0;
  }
  .hero-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-heading {
    font-size: 1.9rem;
  }
  .stat-number {
    font-size: 1.6rem;
  }
  .service-card {
    padding: 1.5rem 1.25rem;
  }
}
/* ─── SIDEBAR DESIGN UI ────────────────────────── */

.sidebar-sticky {
  position: sticky;
  top: 100px;
}

.sidebar-widget-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  color: var(--dark);
}

.sidebar-widget-title .title-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.hover-primary:hover {
  color: var(--primary) !important;
}

.transition-all {
  transition: var(--transition);
}

.cat-pill:hover {
  background-color: var(--primary-xlight);
  padding-left: 15px !important;
  border-color: var(--primary-light) !important;
}

.cat-pill:hover .badge {
  background-color: var(--primary) !important;
  color: var(--white) !important;
}

.search-form-sidebar .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem var(--accent-glow);
}

.recent-post-item:hover .recent-post-thumb {
  transform: scale(1.05);
}

.recent-post-thumb {
  transition: var(--transition-fast);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border: none;
}

.btn-white:hover {
  background: var(--primary-xlight);
  color: var(--primary-dark);
}

@media (max-width: 991.98px) {
  .sidebar-sticky {
    position: static;
  }
}

/* ─── SITE PRELOADER ─── */
#webrise-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

#webrise-preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  animation: pulse-preloader 2s infinite ease-in-out;
}

@keyframes pulse-preloader {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}
ul.dropdown-menu li.nav-item::after {
  content: "";
  display: block;
  border: 1px solid white;
}

.navbar-brand img, .navbar-logo-img{
    margin-right: auto;
}
