@tailwind base;
@tailwind components;
@tailwind utilities;

.collapse {
  visibility: unset;
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotate-gradient {
  0% { --angle: 0deg; }
  100% { --angle: 360deg; }
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.5;
    filter: blur(10px);
  }
  50% {
    opacity: 0.85;
    filter: blur(14px);
  }
}

@keyframes sparkle {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.12) rotate(10deg);
    opacity: 0.85;
  }
}
@font-face {
  font-family: "boxicons";
  src: url("/fonts/boxicons.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Flaticon";
  src: url("/fonts/Flaticon.woff2") format("woff2");
  font-display: swap;
}

.rainbow-button-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 9999px;
  isolation: isolate;

  transition: transform 0.2s ease;
  transform-origin: center;
  will-change: transform;
}

.rainbow-button-wrapper:hover {
  transform: scale(1.02);
}

.rainbow-button-wrapper:active {
  transform: scale(0.98);
}

.rainbow-button-wrapper::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 9999px;
  background: conic-gradient(
    from var(--angle),
    #ff0080,
    #ff8c00,
    #ffef00,
    #00ff00,
    #00cfff,
    #6f00ff,
    #ff0080
  );
  animation: rotate-gradient 3s linear infinite;
  z-index: -1;
  pointer-events: none;
}

.rainbow-button-wrapper::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 9999px;
  background: conic-gradient(
    from var(--angle),
    #ff0080,
    #ff8c00,
    #ffef00,
    #00ff00,
    #00cfff,
    #6f00ff,
    #ff0080
  );
  animation: rotate-gradient 3s linear infinite, glow-pulse 2s ease-in-out infinite;
  z-index: -2;
  filter: blur(12px);
  opacity: 0.6;
  pointer-events: none;
}

#actionButton.rainbow-button {
  position: relative;
  background: #FFFFFF;
  color: #000000;
  padding: 6px 16px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  user-select: none;
  outline: none;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

#actionButton.rainbow-button:hover {
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.ai-driven #actionButton.rainbow-button:hover {
  background: #000000;
}

.ai-driven #actionButton.rainbow-button {
  color: #FFFFFF;
  background: #000000;
}

#actionButton.rainbow-button:focus-visible {
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.25), 0 10px 30px rgba(0, 0, 0, 0.35);
}

.sparkle-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  animation: sparkle 2s ease-in-out infinite;
  flex: 0 0 auto;
}

.button-label {
  display: inline-block;
  transform: translateY(0.5px);
}

.ai-tools-section {
  background: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Floating bg blobs */
.ai-tools-section .ai-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
  pointer-events: none;
}
.ai-tools-section .ai-bg-shape-1 {
  width: 400px; height: 400px;
  background: #fd6730;
  top: -120px; right: -100px;
  animation: aiFloatShape 7s ease-in-out infinite;
}
.ai-tools-section .ai-bg-shape-2 {
  width: 220px; height: 220px;
  background: #fd6730;
  bottom: -60px; left: -60px;
  animation: aiFloatShape 9s ease-in-out infinite reverse;
}
@keyframes aiFloatShape {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-20px); }
}

/* Container */
.ai-tools-section .ai-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.ai-tools-section .ai-header { text-align: center; margin-bottom: 52px; }
.ai-tools-section .ai-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.ai-tools-section .ai-eyebrow span {
  font-size: 13px; font-weight: 700; color: #fd6730;
  text-transform: uppercase; letter-spacing: 1.2px;
}
.ai-tools-section .ai-title {
  font-size: 34px; font-weight: 800; color: #0b1d3a;
  line-height: 1.28; margin-bottom: 14px;
}
.ai-tools-section .ai-title span { color: #fd6730; }
.ai-tools-section .ai-subtitle {
  font-size: 16px; color: #666;
  line-height: 1.75; max-width: 560px; margin: 0 auto;
}

/* Grid */
.ai-tools-section .ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}
@media (max-width: 900px) { .ai-tools-section .ai-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ai-tools-section .ai-grid { grid-template-columns: 1fr; } }

/* Card */
.ai-tools-section .ai-card {
  background: #f9fafb;
  border: 1px solid #ffd8c9;
  border-radius: 16px;
  padding: 30px 26px 26px;
  position: relative;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(28px);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.ai-tools-section .ai-card--visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .6s ease,
    transform .6s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}
.ai-tools-section .ai-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(11, 29, 58, .10);
  border-color: #e3fbff;
}

/* Green bottom accent bar */
.ai-tools-section .ai-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #ff5d22, #E91E63);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.ai-tools-section .ai-card:hover::after { transform: scaleX(1); }

/* Icon */
.ai-tools-section .ai-card-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  transition: transform .3s ease;
  display: none;
}
.ai-tools-section .ai-card:hover .ai-tools-section .ai-card-icon { transform: scale(1.08); }

/* Badge */
.ai-tools-section .ai-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: .5px;
}
.ai-tools-section .badge-popular { background: #e8f8f0; color: #1a7a49; }
.ai-tools-section .badge-new     { background: #ede9fe; color: #5b21b6; }
.ai-tools-section .badge-beta    { background: #fff3e0; color: #c0581a; }

.ai-tools-section .ai-card-title {
  font-size: 17px; font-weight: 800; color: #0b1d3a; margin-bottom: 8px;
}
.ai-tools-section .ai-card-desc {
  font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 18px;
}

/* Feature list */
.ai-tools-section .ai-card-features { list-style: none; margin-bottom: 22px; }
.ai-tools-section .ai-card-features li {
  font-size: 13px; color: #555;
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 5px; line-height: 1.5;
}
.ai-tools-section .ai-card-features li::before {
  content: '✓'; color: #fd6730;
  font-weight: 800; flex-shrink: 0; margin-top: 1px;
}

/* Read more link */
.ai-tools-section .ai-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: #ff5d22;
  text-decoration: none; transition: gap .2s;
}
.ai-tools-section .ai-card-link:hover { gap: 10px; }
.ai-tools-section .ai-card-link svg {
  width: 14px; height: 14px;
  fill: none; stroke: #ff5d22; stroke-width: 2;
  transition: transform .2s;
}
.ai-tools-section .ai-card-link:hover svg { transform: translateX(3px); }

/* CTA banner */
.ai-tools-section .ai-cta {
  background: linear-gradient(135deg, #0b1d3a 0%, #13305c 55%, #FF5722 100%);
  border-radius: 20px;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
}
.ai-tools-section .ai-cta--visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s ease;
}
.ai-tools-section .ai-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
}
.ai-tools-section .ai-cta-blob {
  position: absolute; width: 220px; height: 220px;
  border-radius: 50%; background: #ffffff; opacity: .1;
  right: -50px; top: -50px;
  animation: aiFloatShape 6s ease-in-out infinite;
}
.ai-tools-section .ai-cta-text { position: relative; z-index: 1; }
.ai-tools-section .ai-cta-text h3 {
  font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 8px;
}
.ai-tools-section .ai-cta-text p {
  font-size: 15px; color: rgba(255,255,255,.7);
  line-height: 1.6; max-width: 480px;
}
.ai-tools-section .ai-cta-btns {
  display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1;
}
.ai-tools-section .btn-green {
  background: linear-gradient(135deg, #fd6730, #1a7a49);
  color: #fff; padding: 13px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 800; text-decoration: none;
  box-shadow: 0 4px 18px rgba(32,158,94,.35);
  transition: opacity .2s, transform .2s;
}
.ai-tools-section .btn-green:hover { opacity: .88; transform: translateY(-2px); }
.ai-tools-section .btn-ghost {
  border: 2px solid rgb(255 93 34);
  color: #fff; padding: 12px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: background .2s, border-color .2s;
}
.ai-tools-section .btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
}

@media (prefers-reduced-motion: reduce) {
  .rainbow-button-wrapper::before,
  .rainbow-button-wrapper::after {
    animation: none;
  }

  .sparkle-icon {
    animation: none;
  }

  .rainbow-button-wrapper {
    transition: none;
    transform: none;
  }

  #actionButton.rainbow-button,
  #actionButton.rainbow-button:hover {
    transition: none;
  }
}

.blog-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1) !important;
}

.blog-card-title {
  text-decoration: none;
  transition: color 0.2s ease;
  color: #000000;
}

.blog-card-title:hover {
  color: #ff5d22;
}

.blog-card-thumb img {
  transition: transform 0.4s ease;
}

.blog-card-thumb:hover img {
  transform: scale(1.06);
}

.sidebar-post-title {
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.sidebar-post-title:hover {
  color: var(--bs-primary, #0d6efd) !important;
}

.blog-details-title {
  font-weight: 700;
  line-height: 1.3;
}

.blog-details-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

.pagination .page-link {
  border-radius: 6px;
  margin: 0 3px;
  color: #333;
}

.pagination .page-item.active .page-link {
  background-color: #ff5d22;
  border-color: #ff5d22;
  color: #FFFFFF;
}

.blog-listing-area .default-btn.btn {
  background-color: #ff5d22;
  padding: 4px 12px;
}

.blog-listing-area .card.blog-card .default-btn {
  padding: 8px 12px;
  width: fit-content;
}
/* ============================
   MEGA MENU — BASE
============================ */
.has-mega {
  position: static; /* lets mega-menu span full width if needed */
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #ffffff;
  border-top: 3px solid #ff5d22;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
  padding: 40px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 200;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============================
   GRID LAYOUT
============================ */
.mega-menu-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 28px;
}

.mega-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* ============================
   COLUMN HEADINGS
============================ */
.mega-column h5 {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid #ff5d22;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  height: 50px;
  align-items: center;
  display: flex;
}

.mega-column a {
  color: #ff5d22 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mega-column h5 a:hover {
  color: #2563eb;
}

.navbar-nav-menu .navbar .navbar-nav .nav-item .mega-menu h5 a {
  color: #ff5d22 !important;
}

.navbar-nav-menu .navbar .navbar-nav .nav-item .mega-menu a.mega-link {
  font-size: 16px;
  margin: 10px 0;
  color: #000000 !important; 
  line-height: normal;
  display: block;
  padding: 0;
}
.navbar-nav-menu .navbar .navbar-nav .nav-item .mega-menu a.mega-link:hover {
  color: #ff5d22 !important;
}
.sub-title {
    font-size: 20px;
    font-weight: 700;
}
.services-details-info .services-list li a.active, .services-details-info .services-list li a:hover {
    background-color: #ff5d22;
    border-color: #ff5d22;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}
/* ============================
   SUB-LINKS
============================ */
.mega-link {
  display: block;
  padding: 7px 0;
  font-size: 0.86rem;
  line-height: 1.4;
  color: #4b5568;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease, padding-left 0.2s ease;
}

.mega-link:hover {
  color: #2563eb;
  padding-left: 6px;
}

.mega-link::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2563eb;
  transform: translateY(-50%) scale(0);
  transition: transform 0.2s ease;
}

.mega-link:hover::before {
  transform: translateY(-50%) scale(1);
}
.mega-menu.show {
    visibility: visible;
    opacity: 1;
}
.navbar-nav-menu .navbar ul.navbar-nav .service-menu {
  position: static;
}
.navbar-nav-menu ul.navbar {
  position: relative;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1200px) {
  .mega-menu-grid {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 32px;
  }
}

@media (max-width: 900px) {
  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    padding: 12px 0;
    display: none; /* toggle via JS/class on mobile */
  }
  .has-mega.open .mega-menu {
    display: block;
  }
  .mega-menu-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 20px;
  }
}

.navbar-nav-menu nav.navbar {
  position: relative;
  padding: 0;
}

li.nav-item.dropdown.service-menu.open {
  position: static;
}
.navbar-nav-menu .navbar .navbar-nav .nav-item .mega-menu a.mega-link::before {
  display: none;
}


/* meghamenu */
/* -----------------------------------------------------------
   Service — sidebar mega menu
   Left sidebar of categories, right panel of service links.
   Same structural pattern as the Blog mega menu.
------------------------------------------------------------ */

.sidebar-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 3px solid #ff5d22;
  box-shadow: 0 8px 24px -5px rgba(0, 0, 0, 0.15);
  z-index: 999;
  padding: 0;
}

.sidebar-mega-inner {
  display: flex;
}

/* Left sidebar: E-Commerce Development, Web Development, ... */
.sidebar-nav {
  flex: 0 0 260px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #ff5d22;
  border-right: none;
}

.sidebar-nav-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #666;
}

.sidebar-nav-item > a i {
  font-size: 16px;
  opacity: 0.6;
}

.sidebar-nav-item.active > a,
.sidebar-nav-item:hover > a {
  color: #fff;
  background: #ff5d22;
}

/* Right panel: service links for the active category */
.sidebar-panel {
  flex: 1;
  padding: 16px 20px;
  background: #fff;
  border-left: none;
  max-height: 480px;
  overflow-y: auto;
}

.sidebar-panel-title {
  margin: 0;
  font-size: 16px;
}

.sidebar-panel-title a {
  color: #222;
  text-decoration: none;
}

/* Multi-column flow so long lists (e.g. 11 e-commerce services)
   wrap into readable columns instead of one long list. */
.sidebar-panel-links {
  column-count: 2;
  column-gap: 32px;
  width: 60%;
  display: inline-block;
  vertical-align: top;
  display: inline-grid;
  flex-wrap: wrap;
  grid-template-columns: 50% calc(50% - 32px);
}

.menu-img {
  width: 39%;
  display: inline-block;
  vertical-align: top;
}

.sidebar-panel-links .mega-link {
  display: block;
  break-inside: avoid;
  font-size: 14px;
  line-height: 32px;
  color: #555;
  text-decoration: none;
}

.sidebar-panel-links .mega-link:hover,
.sidebar-panel-links .mega-link.active {
  color: #222;
  text-decoration: none;
}

/* ---- Mobile: sidebar stacks on top, panel below ---- */
@media (max-width: 991px) {
  .sidebar-mega-inner {
    flex-direction: column;
  }

  .sidebar-nav {
    flex: none;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .sidebar-panel {
    max-height: none;
    padding: 16px;
  }

  .sidebar-panel-links {
    column-count: 1;
  }
}


.navbar-nav-menu .navbar .navbar-nav .nav-item .sidebar-nav-item a {
    padding: 10px;
    background: #ff5d22;
    color: #fff;
}

li.sidebar-nav-item {background: #FFFFFF;}

.navbar-nav-menu .navbar .navbar-nav .nav-item .sidebar-nav-item.active a {
    background: #FFFFFF;
    color: #ff5d22;
}
.navbar-nav-menu .navbar .navbar-nav .nav-item a i {
  opacity: 1;
}
.navbar-nav-menu .navbar .navbar-nav .nav-item .sidebar-nav-item.active a i {
  color: #ff5d22;
}
a {
  text-decoration: none;
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

}


a:focus-visible {
  outline: 3px solid #ff5d22;
  outline-offset: 4px;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 32px;
  margin-left: 15px;

  border: 2px solid #ff5d22;
  border-radius: 5px;

  color: #ff5d22;
  background: transparent;

  font-size: 16px;
  font-weight: 600;
  line-height: 1;

  text-decoration: none;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;

  cursor: pointer;
}


/* Hover */
.secondary-btn:hover {
  background-color: #ff5d22;
  color: #ffffff;
  border-color: #ff5d22;
  transform: translateY(-2px);
}


/* Keyboard Accessibility */
.secondary-btn:focus-visible {
  outline: 3px solid #ff5d22;
  outline-offset: 4px;
}


/* Active State */
.secondary-btn:active {
  transform: translateY(0);
}


/* Mobile Responsive */
@media (max-width: 767px) {

  .secondary-btn {
    margin-left: 0;
    margin-top: 15px;

    width: 100%;
    text-align: center;
  }

}

.banner-section {
    padding-top: 231px;
    padding-bottom: 175px;
}

.single-services-item .default-btn:hover i {
    left: 80%;
}
@media (min-width: 1400px) {
    .about-content .content, .our-mission-content .content {
        max-width: 635px;
    }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* BACK TO TOP BUTTON START*/
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);

  background: linear-gradient(
    135deg,
    #ff5d22,
    #ed3a68
  );

  color: #ffffff;
  font-size: 22px;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 9999;

  box-shadow:
    0 10px 25px rgba(37, 99, 235, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(10px);

  opacity: 0;
  transform: translateY(20px) scale(0.9);
  animation: backToTopShow 0.35s ease forwards;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-6px) scale(1.05);

  background: linear-gradient(
    135deg,
    #7c3aed,
    #2563eb
  );

  box-shadow:
    0 15px 35px rgba(124, 58, 237, 0.45),
    0 0 20px rgba(37, 99, 235, 0.3);
}

.back-to-top:active {
  transform: scale(0.95);
}

@keyframes backToTopShow {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    right: 20px;
    bottom: 20px;
    font-size: 20px;
  }
}
/* BACK TO TOP BUTTON END*/

.ai-chat-button {
  position: fixed;
  bottom: 90px;    /* back-to-top's bottom + its height + gap */
  right: 24px;
}

.ai-chat-box {
  position: fixed;
  bottom: 160px;   /* button bottom + button height + gap */
  right: 24px;
}
.menu-img img {
  max-height: 280px;
  width: auto;
  margin: 0 auto;
  display: block;
}
.banner_img img{
  object-fit: cover;
}

@media (max-width: 991px) {
  .sidebar-mega-menu {
    position: static;
    background: none;
    border: none;
  }
  .sidebar-panel-links {
    grid-template-columns: 100%;
  }
  .sidebar-panel {
    display: none !important;
  }
  .navbar-nav-menu .navbar .navbar-nav .nav-item .sidebar-nav-item a {
    padding: 10px 20px;
    font-size: 14px;
    color: #221638;
    background: none;
  }
  .navbar-nav-menu .navbar .navbar-nav .nav-item .sidebar-nav-item a i {
    display: none;
  }
  .navbar-nav-menu .navbar .navbar-nav .nav-item .sidebar-nav-item:last-child a{
    border: none;
  }
}

/* CASE STUDY / PORTFOLIO START*/
.Portfolio_categoryBadge__pDcDk, .Portfolio_tech__7B4RB {
    display: none!important;
}
.Portfolio_singleProjectsBox__vcp0n {
    position: relative;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.4s ease;
    transform-style:preserve-3d;
}
.Portfolio_singleProjectsBox__vcp0n:hover {
    transform: perspective(1000px)
      rotateX(3deg)
      rotateY(-2deg)
      translateY(-10px);
    box-shadow:
      0 30px 70px rgba(0,0,0,.18);
}
.Portfolio_singleProjectsBox__vcp0n::before {
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
      135deg,
      rgba(255,93,34,.15),
      transparent
    );
    opacity:0;
    transition:.4s;
}
.Portfolio_singleProjectsBox__vcp0n:hover::before {
    opacity:1;
}
.Portfolio_singleProjectsBox__vcp0n::after {
    content:"";
    position:absolute;
    width:150px;
    height:150px;
    background:#ff5d22;
    filter:blur(80px);
    opacity:0;
    transition:.4s;
}
.Portfolio_singleProjectsBox__vcp0n:hover::after {
    opacity:.25;
}
.Portfolio_singleProjectsBox__vcp0n a{
  position: relative;
}
.Portfolio_image__c_fju img {
    width: 100%;
    height: auto!important;
}
/* CASE STUDY / PORTFOLIO END*/