/* =========================================================
 MERGED STYLESHEET
 - Google fonts + site-wide styles
 - Scoped Mega Menu for .pano-header (Services / Industries / Products / Company)
 NOTE: Mega menu rules are SCOPED to .pano-header to avoid conflicts
========================================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wdth,wght@0,75..100,100..900;1,75..100,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Roboto:ital,wdth,wght@0,75..100,100..900;1,75..100,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Outfit:wght@100..900&family=Roboto:ital,wdth,wght@0,75..100,100..900;1,75..100,100..900&display=swap');

/* Helpers & reset */
:root {
  --c-brand: #fac562;
  --c-dark: #333;
  --c-color: #2b2c2c;
  --c-light: #f8f8f8;
  --f-base: 'Roboto', sans-serif;
  --n-height: 100px;
  --w-base: 1440px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  color: var(--c-color);
  font-family: var(--f-base);
  line-height: 1.8;
  font-weight: 400;
  overflow-x: hidden;
}

body.menu-open .main-content-wrapper {
  transform: translateY(calc(100vh - 80px));
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--c-dark);
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 400;
}

.heading-xl {
  font-size: clamp(18px, 10vw, 40px);
  text-transform: uppercase;
  text-align: center;
  color: #017ec3;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 5%;
}
.heading-1 {
  font-size: clamp(32px, 6vw, 54px);
}
.heading-2 {
  font-size: clamp(19px, 4vw, 24px);
  text-align: center;
  font-family: Manrope;
  font-style: normal;
  font-weight: 800;
  line-height: 52px;
  letter-spacing: -0.72px;
}
.heading-3 {
  font-size: 20px;
}

a {
  color: var(--c-dark);
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
a:hover {
  color: var(--c-brand);
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
ul {
  list-style: none;
}
section {
  padding: 0;
}

.container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  background-color: transparent;
  border: 1px solid var(--c-brand);
  font-family: var(--f-base);
  padding: 16px 32px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  font-size: 14px;
}
.btn:hover {
  background-color: var(--c-brand);
  color: white;
}

/* ----- Top bar & legacy navbar (kept for site sections) ----- */
.topbar-blognews {
  background: linear-gradient(90deg, #c2e0f1 0%, #edfafd 100%);
  color: var(--c-color);
  text-align: end;
  font-family: var(--f-base);
  padding: 6px 110px 6px 0;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* (Legacy) .topnavbar styles retained for other pages if used */
.topnavbar {
  display: flex;
  height: 80px;
  padding: 0 110px 1px 110px;
  align-items: flex-start;
  flex-shrink: 0;
  border: 0 solid #d8dcde;
  background: linear-gradient(0deg, rgba(1, 126, 195, 0) 0%, rgba(1, 184, 234, 0.11) 100%);
  box-shadow: 0 7px 7.2px 0 rgba(0, 0, 0, 0.25);
}
.topnavbar img {
  width: 280.718px;
  height: 60.992px;
  flex-shrink: 0;
}

/* ----- Hero & sections ----- */
.hero-container {
  max-width: 100%;
  background: radial-gradient(
    113.89% 68.79% at 76.7% 36.6%,
    rgba(1, 184, 234, 0.07) 44.38%,
    rgba(1, 126, 195, 0.24) 100%
  );
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.hero {
  width: 80%;
  height: 561px;
  font-family: Outfit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
.hero-text {
  max-width: 100%;
}
.hero-text h1 {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
  font-family: Outfit;
}
.hero-text h1 span {
  font-weight: 600;
  background: linear-gradient(to right, #75c9f0, #1c8dd9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text p {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}
.hero-image {
  max-width: 40%;
}
.hero-image img {
  width: 120%;
  height: auto;
}

.middle-section {
  padding: 0;
}
.ourservices-container {
  max-width: 100%;
  align-items: center;
  justify-content: center;
}
.ourservices {
  margin-top: 4%;
  width: 80%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 12px;
  justify-self: center;
}
.ourservices-card {
  width: 95%;
  height: 310px;
  padding: 30px 30px 30px 50px;
  border-radius: 15px;
  border: 1px solid #01b8ea;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: start;
}
.ourservices-card-img {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  background: #01b8ea;
}
.heading-card {
  font-size: clamp(15px, 4vw, 25px);
  text-align: start;
  font-family: Manrope;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.4px;
  padding-top: 20px;
}
.ourservices-card-text {
  color: #757095;
  font-family: Manrope;
  font-size: clamp(8px, 4vw, 12px);
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.24px;
  padding-top: 15px;
}
.ourservices .ourservices-card:last-child {
  background: #017ec3;
  color: var(--c-light);
  text-align: center;
  border: 1px solid #fff;
}
.ourservices .ourservices-card:last-child .ourservices-card-text {
  color: var(--c-light);
  text-align: start;
}

.whyus {
  width: 80%;
  margin-top: 6%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 12px;
  justify-self: center;
}
.whyus-card {
  width: 110%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.whyus .whyus-card .heading-card {
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 600;
  line-height: normal;
}
.whyus .ourservices-card-img {
  width: 302px;
  height: 302px;
  border-radius: 0;
  background: url('../img/whyusimage.svg') lightgray 50% / cover no-repeat;
  justify-self: end;
}

.ourtopservice {
  width: 80%;
  margin-top: 2%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 12px;
  justify-self: center;
}
.ourtopservice-card {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.ourtopservice .ourtopservice-card .heading-card {
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 600;
  line-height: normal;
  color: #017ec3;
}
.ourtopservice .ourservices-card-img {
  width: 302px;
  height: 302px;
  border-radius: 0;
  background: url('../img/itinsfrastructure.svg') white 50% / cover no-repeat;
  justify-self: end;
}
.ourtopservice-button {
  display: inline-flex;
  margin-top: 15px;
  padding: 19px 21px 18px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #017ec3;
  color: #fff;
  font-weight: 700;
}
.ourtopservice-button:hover {
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.6s ease-in-out;
}
.card-text {
  order: 2;
}
.card-image-2 {
  order: 1;
  width: 302px;
  height: 302px;
  border-radius: 0;
  background: url('../img/cybersecurity.svg') white 50% / cover no-repeat;
  justify-self: start;
}
.card-image-3 {
  width: 302px;
  height: 302px;
  border-radius: 0;
  background: url('../img/cybersecurity-2.svg') white 50% / cover no-repeat;
  justify-self: end;
}

/* ----- Footer ----- */
.footer-section {
  padding: 0;
  margin-top: 4%;
  border-top: 1px solid var(--Border, rgba(0, 0, 0, 0.2));
  background: var(--Neutral-50, #fdfdfd);
}
.footer-area {
  width: 80%;
  height: auto;
  justify-self: center;
}
.footer-header {
  color: var(--Text-900, #101113);
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.2px;
  margin-top: 3%;
}
.footer-text {
  color: var(--Text-400, #5c5f66);
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 80px;
}
.footer-input {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}
.footer-input input {
  display: flex;
  width: 320px;
  padding: 12px;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  border: 1px solid var(--Neutral-300, #d6d6d6);
}
.footer-input button {
  display: flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #017ec3;
  color: var(--Text-50, #fdfdfd);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  border: #fdfdfd;
}
.footer-area hr {
  margin: 68px 0;
}
.footer-dtl {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.footer-dtl-one {
  display: flex;
  width: 205px;
  height: auto;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.footer-dtl-one .social-icon {
  margin-top: 2%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.footer-dtl-one .social-icon img {
  width: 24px;
  height: 24px;
}
.footer-dtl-two {
  display: flex;
  align-items: flex-start;
  gap: 160px;
}
.footer-dtl-three,
.footer-dtl-four,
.footer-dtl-five,
.footer-dtl-six {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
}
.footer-dtl-heading-text {
  color: var(--Text-900, #101113);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.footer-dtl-text {
  display: flex;
  height: 24px;
  align-items: center;
  gap: 8px;
  color: var(--Text-400, #5c5f66);
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  white-space: nowrap;
}
.footer-end {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
}
.footer-end-left,
.footer-end-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-end-round {
  width: 4px;
  height: 4px;
  border-radius: 16px;
  background: var(--Text-400, #5c5f66);
}

/* =========================================================
 SCOPED MEGA MENU (bar) FOR .pano-header (DESKTOP)
========================================================= */

/* Header shell */
.pano-header {
  position: fixed; /* always visible */
  top: 30px;
  left: 0;
  width: 100%; /* full width */
  z-index: 1000;
  background: linear-gradient(0deg, rgba(1, 126, 195, 0) 0%, rgba(1, 184, 234, 0.11) 100%);
  box-shadow: 0 7px 7.2px 0 rgba(0, 0, 0, 0.25);
  height: 80px;
  transition: top 0.3s ease;
}
.pano-header.scrolled {
  background: #fff;
  top: 0;
}

.pano-header__inner {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}
.pano-header .pano-logo img {
  max-width: 100%;
  width: 100%;
  height: auto;
  transform: translateX(-50px);
}
.pano-header .pano-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.pano-header .search-btn {
  background: transparent;
  border: 0;
  opacity: 0.75;
  cursor: pointer;
}
.pano-header .cta-primary {
  display: inline-block;
  padding: 12px 24px;
  background: #01b8ea;
  color: #fff;
  border-radius: 24px;
  font: 700 14px/1 'Outfit', ui-sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

/* Menu base (scoped) */
.pano-nav {
  width: 100%;
}
.pano-header .pano-nav {
  position: relative;
}
.pano-header .menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10.2%;
  margin: 0;
}
.pano-header .has-mega {
  position: static;
}
/* full-width within header column */
.pano-header .menu-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 30px 10px;
  border: 0;
  background: transparent;
  font: 500 16px/1.1 Roboto, ui-sans-serif;
  color: #333e49;
  cursor: pointer;
  position: relative;
}
.pano-header .menu-btn .arrow {
  transition: transform 0.25s ease;
}

/* Thin blue underline + active color on hover */
.pano-header .menu-btn::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #017ec3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.pano-header .menu > li:hover .menu-btn {
  color: #017ec3;
}
.pano-header .menu > li:hover .menu-btn::after {
  transform: scaleX(1);
}

/* Mega container (white bar) */
.pano-header .megamenu {
  position: fixed;
  top: 112px;
  left: 0;
  right: 0;
  width: min(1240px, calc(100vw - 48px));
  height: auto;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid #e6eaed;
  border-radius: 25px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 9999;
  backdrop-filter: blur(6px);
  margin: 0 auto;
}

.pano-header.scrolled .megamenu {
  top: 80px;
}

/* Open on hover + arrow rotate */
.pano-header .menu > li:hover > .megamenu,
.pano-header .menu > li:focus-within > .megamenu,
.pano-header .menu > li.open > .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pano-header .menu > li:hover .menu-btn .arrow {
  transform: rotate(180deg);
}

/* Left rail */
.mega-aside {
  width: 405px;
  background: #eaf6ff;
  position: relative;
  padding: 42px 0 12px;
  border-right: 1px solid #e6eaed;
}
/* pale strip above list (as seen in shots) */
.mega-aside::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 46px;
  background: #eaf6ff;
}

.aside-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  color: #0b86d2;
  font: 600 14px/1 Roboto, ui-sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s ease;
}
.aside-link svg {
  color: #0b86d2;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.aside-link:hover {
  background: #e5f2ff;
  color: #017ec3;
}
.aside-link.active {
  background: #ffffff;
} /* active row is white */
.aside-link.active svg {
  opacity: 1;
} /* show chevron only when active */

/* Right body (white) + blue divider */

.pano-header .mega-body {
  flex: 1;
  padding: 42px;
}

.pano-header .mega-body::after {
  content: '';
  position: absolute;
  top: 18px;
  bottom: 18px;
  right: clamp(180px, 24vw, 320px);
  width: 3px;
  border-radius: 2px;
  background: #0b86d2;
  pointer-events: none;
}

/* Panels – single column “bar” via .mega-list */
.pano-header .mega-panel {
  display: none;
}
.pano-header .mega-panel.is-visible {
  display: block;
}
.pano-header .mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  row-gap: 10px;
  max-width: 560px;
}
.pano-header .mega-list li a {
  text-decoration: none;
  color: #333e49;
  font: 600 14px/1.35 Roboto, ui-sans-serif;
}
.pano-header .mega-list li a:hover {
  color: #017ec3;
}

.mega-content h3,
.mega-content p {
  width: 80%;
}

/* =========================================================
 MOBILE STYLES (MAX WIDTH 992PX)
 ========================================================= */
@media (max-width: 992px) {
  /* Mega Menu Structure Overrides for Mobile Visibility */
  .pano-header .megamenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out;
    position: relative;
    border-radius: 0;
    top: 0;
  }

  .pano-header.scrolled .megamenu {
    top: 0;
  }

  /* Active submenu open */
  .pano-header .megamenu.open {
    max-height: 1000px;
  }

  .mega-aside {
    width: 100%;
    background-color: #eaf6ff;
    border-right: none;
    padding: 0;
    border-radius: o;
  }

  .aside-link {
    background: transparent !important;
    color: #333e49;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    margin-top: 0;
  }

  .pano-header .aside-link {
    flex: 1;
    justify-content: center;
  }

  .aside-link.active {
    display: none;
    /*color: #017ec3;
    background-color: #f0f8ff !important;
    */
  }

  .mega-aside::before {
    position: absolute;
    top: 0;
    height: auto;
    background: #fff;
  }

  .aside-link svg {
    display: none;
  }

  .pano-header .mega-body {
    padding: 20px 0 0;
  }

  .pano-header .mega-panel {
    display: none;
  }
  .pano-header .mega-panel.is-visible {
    display: block;
    padding: 20px;
  }

  .pano-header .mega-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pano-header .mega-list li a {
    font-size: 16px;
    padding: 8px 0;
  }

  /* Main mobile menu */
  .pano-header .menu {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    position: fixed;
    top: 110px;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 0 20px;
    transition: max-height 0.35s ease-in-out;
    z-index: 1000;
    align-items: start;
  }

  .pano-header.scrolled .menu {
    top: 80px;
    align-items: start;
  }

  .pano-header .menu.open {
    max-height: calc(100vh - 60px);
    margin-top: 0;
    align-items: start;
  }

  .pano-header.scrolled .menu.open {
    margin-top: 0; /* keeps things stable */
    align-items: start;
  }
  /*
  .pano-header .menu > li {
    width: 100%;
    border-bottom: 1px solid #e6eaed;
  }*/
  /* Space between top-level menu items */
  .pano-header .menu > li {
    margin-bottom: 20px; /* creates space between Services, Industries, etc. */
    border-bottom: none; /* optional: remove thin border if not needed */
  }

  /* Make aside-links fill full width with spacing */
  .pano-header .megamenu .mega-aside {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .pano-header .megamenu .aside-link {
    display: block;
    width: 100%;
    border-bottom: 1px solid #ddd; /* separate links nicely */
    padding: 20px;
    border-end-end-radius: 20px;
  }

  /* Add space between aside-links and their panels */
  .pano-header .megamenu .mega-body {
    /*margin-top: 15px; */
    display: none;
  }

  /* Show panels full-width below aside links */
  .pano-header .megamenu .mega-panel.is-visible {
    display: block;
    width: 100%;
    padding: 16px 0;
    border-top: 1px solid #eee;
  }

  .pano-header .mega-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out;
    padding-left: 15px; /* indent for clarity */
  }

  .pano-header .aside-link.active + .mega-list {
    max-height: 500px; /* enough space, adjusted dynamically by JS */
  }

  .pano-header .mega-list li a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px dashed #e0e0e0;
  }

  /* Style inner links better */
  .pano-header .megamenu .mega-list li a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px dashed #e0e0e0;
  }

  /* Hide desktop CTA on mobile */
  .pano-header .pano-cta {
    display: none;
  }

  /* Mobile header grid */
  .pano-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 0;
  }
  .pano-header .pano-logo img {
    transform: none;
  }

  /* Mobile menu toggle button */
  .pano-header .nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
    margin-left: auto; /* cleaner than 120% */
  }

  .pano-header .menu-btn {
    width: 100%;
    justify-content: space-between;
    padding: 16px 0;
    font-weight: 600;
    font-size: 18px;
  }

  /* Hamburger icon */
  .hamburger,
  .hamburger::before,
  .hamburger::after {
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    background: #969494;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    position: relative;
  }
  .hamburger::before,
  .hamburger::after {
    position: absolute;
    left: 0;
  }
  .hamburger::before {
    top: -8px;
  }
  .hamburger::after {
    top: 8px;
  }

  .nav-toggle.open .hamburger {
    background: transparent;
  }
  .nav-toggle.open .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }
  .nav-toggle.open .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
  }

  /* Sections */
  .hero-container {
    height: auto;
    padding: 100px 0 20px;
  }
  .hero {
    flex-direction: column-reverse;
    height: auto;
    width: 90%;
    text-align: center;
  }
  .hero-text {
    margin-top: 20px;
  }
  .hero-text h1 {
    font-size: clamp(24px, 8vw, 32px);
  }
  .hero-text p {
    font-size: 14px;
  }
  .hero-image {
    max-width: 80%;
  }

  .ourservices {
    grid-template-columns: 1fr;
    width: 90%;
  }
  .ourservices-card {
    width: 100%;
    padding: 20px;
    height: auto;
  }
  .ourservices .ourservices-card:last-child {
    background: #017ec3;
  }

  .whyus {
    grid-template-columns: 1fr;
    width: 90%;
  }
  .whyus-card {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .whyus .ourservices-card-img {
    margin-top: 20px;
    height: 200px;
  }

  .heading-2 {
    line-height: 29px;
    font-weight: 600;
  }

  .ourtopservice {
    grid-template-columns: 1fr;
    width: 90%;
  }
  .ourtopservice-button {
    padding: 7px 18px 6px 18px;
    font-weight: 600;
  }
  .ourtopservice-card {
    text-align: start;
    align-items: center;
  }
  .card-text {
    order: 1;
  }
  .card-image-2 {
    order: 2;
  }
  .ourtopservice .ourservices-card-img,
  .card-image-2,
  .card-image-3 {
    margin-top: 4px;
    width: 110%;
    height: 400px;
    justify-self: center;
  }

  .footer-area {
    width: 90%;
  }
  .footer-input {
    flex-direction: column;
    width: 100%;
  }
  .footer-input input {
    width: 100%;
  }
  .footer-dtl {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-dtl-two {
    display: none;
  }
  .footer-dtl-one {
    width: 100%;
    align-items: center;
    margin-bottom: 20px;
  }
  .footer-end {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/*
@media (max-width: 992px) {
 

  pano-header .megamenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out;
  }

  
  .pano-header .megamenu.open {
    max-height: 1000px; 
  }

  .pano-header .has-mega.open .megamenu {
    display: block;
  }

  .mega-aside {
    width: 100%;
    background-color: #eaf6ff;
    border-right: none;
    padding: 0;
  }

  .mega-aside::before {
    display: none;
  }

  .aside-link {
    background: transparent !important;
    color: #333e49;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
  }

  .aside-link.active {
    color: #017ec3;
    background-color: #f0f8ff !important;
  }

  .aside-link svg {
    display: none;
  }

  .pano-header .mega-body {
    
    padding: 20px 0 0; 
  }

  .pano-header .mega-body::after {
    display: none;
  }

  .pano-header .mega-panel.is-visible {
    display: block;
    padding: 20px; 
  }

  .pano-header .mega-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pano-header .mega-list li a {
    font-size: 16px;
    padding: 8px 0;
  }

  .pano-header .menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #fff;
    padding: 20px;
    overflow-y: auto;
  }

  .pano-header .menu.open {
    display: flex;
    margin-top: 51px;
    height: auto;
  }

  .pano-header.scrolled .menu.open {
    margin-top: 21px;
  }
  .pano-header .menu > li {
    width: 100%;
    border-bottom: 1px solid #e6eaed;
  }

  .pano-header .pano-cta {
    display: none;
  }

  .pano-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 0;
  }
  .pano-header .pano-logo img {
    transform: none; 
  }

 
  .pano-header .nav-toggle {
    
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
    margin-left: 120%;
  }
  .pano-header .menu-btn {
    width: 100%;
    justify-content: space-between;
    padding: 16px 0;
    font-weight: 600;
    font-size: 18px;
  }

  .pano-header .menu-btn::after {
    display: none;
  }

  .pano-header .menu > li:hover .menu-btn {
    color: #333e49;
  }

  
  .hamburger,
  .hamburger::before,
  .hamburger::after {
    
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    background: #969494;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    position: relative;
  }

  .hamburger::before,
  .hamburger::after {
    position: absolute;
    left: 0;
  }

  .hamburger::before {
    top: -8px;
  }

  .hamburger::after {
    top: 8px;
  }

  .nav-toggle.open .hamburger {
    background: transparent; 
  }

  .nav-toggle.open .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }

  .nav-toggle.open .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
  }

  
  .hero-container {
    height: auto;
    padding: 100px 0 20px;
  }
  .hero {
    flex-direction: column-reverse;
    height: auto;
    width: 90%;
    text-align: center;
  }
  .hero-text {
    margin-top: 20px;
  }
  .hero-text h1 {
    font-size: clamp(24px, 8vw, 32px);
  }
  .hero-text p {
    font-size: 14px;
  }
  .hero-image {
    max-width: 80%;
  }

  
  .ourservices {
    grid-template-columns: 1fr;
    width: 90%;
  }
  .ourservices-card {
    width: 100%;
    padding: 20px;
    height: auto;
  }
  .ourservices .ourservices-card:last-child {
    background: #017ec3;
  }

  
  .whyus {
    grid-template-columns: 1fr;
    width: 90%;
  }
  .whyus-card {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .whyus .ourservices-card-img {
    margin-top: 20px;
    height: 200px;
  }

  .heading-2 {
    line-height: 29px;
    font-weight: 600;
  }

  
  .ourtopservice {
    grid-template-columns: 1fr;
    width: 90%;
  }
  .ourtopservice-button {
    padding: 7px 18px 6px 18px;
    font-weight: 600;
  }
  .ourtopservice-card {
    text-align: start;
    align-items: center;
  }
  .card-text {
    order: 1;
  }
  .card-image-2 {
    order: 2;
  }
  .ourtopservice .ourservices-card-img,
  .card-image-2,
  .card-image-3 {
    margin-top: 4px;
    width: 110%;
    height: 400px;
    justify-self: center;
  }

  
  .footer-area {
    width: 90%;
  }
  .footer-input {
    flex-direction: column;
    width: 100%;
  }
  .footer-input input {
    width: 100%;
  }
  .footer-dtl {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-dtl-two {
    display: none; 
  }
  .footer-dtl-one {
    width: 100%;
    align-items: center;
    margin-bottom: 20px;
  }
  .footer-end {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}*/
