@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.a{
  text-decoration: none;

}

body {
  background: #ffffff;
  overflow-x: hidden;
}

/* .navbar{
    padding: 12px 35px;
    background: rgb(255 255 255);
    width: 1280px;
    margin: 20px 37px auto;
    border-radius: 22px;
    position: fixed;
    z-index: 999;

      
    } */

.navbar {
  width: 95%;
  max-width: 1400px;
  margin: 20px auto;

  background: #fff;
  border-radius: 16px;
  padding: 14px 28px;
  /* position: fixed; */
  top: 0;

  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.nav-link{
  cursor: pointer;
}

.navbar-collapse {
  align-items: center;
}

.navbar-container {
  position: fixed;
  top: 0;
  
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  /* z-index: 9999; */
  transition: transform 0.4s ease;
}

.navbar-container.navbar-hide {
  transform: translateX(-50%) translateY(-150%);
}

.logo {
  width: 46px;
  height: 44px;
  object-fit: contain;
}

.navbar-nav {
  gap: 20px;
  margin-left: 60px !important;
}

.nav-link {
  color: #222 !important;
  /* margin-left: 20px; */
  font-weight: 500;
  padding: 2px 2px !important;
  font-size: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 90%;
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  opacity: 0;
  visibility: hidden; 
  transform: translateX(-50%) translateY(10px);
  transition: 0.35s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  z-index: 999;
  
}


.mega-grid a{
  text-decoration: none;
}

.mega-dropdown {
  position: static;
}

.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  /* top: 115%; */
}



.services-menu {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.mega-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mega-item i {
  font-size: 34px;
  color: #3461ff;
  margin-bottom: 5px;

}

.mega-item h4 {
  font: size 18px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: "Bricolage Grotesque", sans-serif !important;
}

.mega-item:hover h4 {
  color: #0659f5 !important;
}

.mega-item p {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
  font-family: Space Grotesk;
font-weight: 400;
font-style: Regular;
font-size: 14px;
line-height: 150%;
letter-spacing: 1%;
text-transform: capitalize;

}

.mega-side-card {
  width: 320px;
  background: #f7f7f7;
  border-radius: 20px;
  padding: 20px;
  max-width: 403px;
}

.side-image {
  height: 160px;
  border-radius: 16px;
  background: #dcdcdc;
  margin-bottom: 20px;
}

.mega-side-card h3 {
  font-family: Bricolage Grotesque;
font-weight: 600;
font-style: SemiBold;
font-size: 20px;
line-height: 100%;
letter-spacing: 0%;
text-transform: capitalize;

  margin-bottom: 16px;
  font-family: "Bricolage Grotesque", sans-serif;
}

.mega-side-card p {
  color: #666;
  font-family: Space Grotesk;
font-weight: 400;
font-style: Regular;
font-size: 14px;
line-height: 1.7;
text-transform: capitalize;

  margin-bottom: 25px;
}

.solutions-menu {
  /* display: grid; */
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: flex;
  align-items: flex-start;
  width: 100%;
  background: #fff;
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.08);
}

.solution-card {
  padding: 20px;
  border-radius: 18px;
  transition: 0.3s ease;
  cursor: pointer;
  width: 281px;
  height: 188px;

}

.solution-card p {
  color: #666;
  line-height: 1.7;
  font-size: 14px;
  font-family: "Space Grotesk", sans-serif;
}

.solution-card.active {
  background: #f3f2ff;
}

.solution-card:hover {
  background: #f3f2ff;
}

.solution-card h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 15px;
  color: #111;
  transition: 0.3s ease;
  font-family: "Bricolage Grotesque", sans-serif;
}

.solution-card i {
  font-size: 26px;
  color: #3461ff;
  margin-bottom: 5px;
  display: block;
  transition: 0.3s ease;
}

.solution-side-card {
  width: 280px;
  background: #f7f7f7;
  border-radius: 20px;
  padding: 20px;
  flex-shrink: 0;
}

.solution-side-card h3 {
  font-weight: 600;
  /* line-height: 1.3; */
  margin-bottom: 18px;
  font-family: Bricolage Grotesque;
font-weight: 600;
font-style: SemiBold;
font-size: 20px;
line-height: 100%;
letter-spacing: 0%;
text-transform: capitalize;

  color: #000;
  font-family: "Bricolage Grotesque", sans-serif;
}

.solution-side-card p {
  font-size: 14px !important;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
  font-family: "Space Grotesk", sans-serif;
}

.solutions-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.solution-card.active {
  background: #f4f4ff;
}

.solution-card:hover {
  background: #f4f4ff;

  transform: translateY(-4px);
}

.solution-card:hover h4 {
  color: #3461ff;
}

.solution-card.active h4 {
  color: #3461ff;
}

.company-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}
.company-menu a{
  text-decoration: none;
}

.company-card {
  padding: 40px;
  border-radius: 18px;
  transition: 0.3s ease;
}

.company-card.active {
  background: #f3f2ff;
}

.company-card:hover {
  background: #f3f2ff;
}

.company-card i {
  font-size: 26px;
  color: #3461ff;
  margin-bottom: 40px !important;
}

.bi-hand-thumbs-up::before {
    content: "\f407";
}

.company-card h4 {
  margin-top: 15px;
  margin-bottom: 15px;
  color: #000000;
  font-family: Bricolage Grotesque;
font-weight: 600;
font-style: SemiBold;
font-size: 18px;
line-height: 100%;
letter-spacing: 0%;
text-transform: capitalize;

}

.company-card:hover h4 {
  color: #3461ff;
}

.company-card p {
  color: #666;
  font-family: Space Grotesk;
font-weight: 400;
  margin-bottom: 15px;

font-style: Regular;
font-size: 14px;
line-height: 100%;
letter-spacing: 1%;
text-transform: capitalize;

}

.btn-outline-primary{
  background-color: #0d4ee6;
  color: white;
}

@media (max-width: 1199px) {
  .navbar {
    width: 95%;
    padding: 14px 18px;
  }

  .navbar-collapse {
    background: #fff;
    margin-top: 18px;
    padding: 20px;
    border-radius: 18px;
    max-height: 80vh;
    overflow-y: auto;
  }

  .mega-menu {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    margin-top: 10px;
    padding: 18px;
    border-radius: 18px;
    box-shadow: none;
  cursor:pointer;

  }

  .mega-dropdown.active .mega-menu {
    display: block;
  }

  .navbar-nav {
    margin-left: 0 !important;
    gap: 10px;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    padding: 14px 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* OPEN ONLY ON CLICK */

  .mega-dropdown.active .mega-menu {
    display: block;
  }

  .services-menu,
  .solutions-menu {
    flex-direction: column;
  }

  .mega-grid,
  .solutions-grid,
  .company-menu {
    grid-template-columns: 1fr;
  }

  .mega-side-card,
  .solution-side-card {
    width: 100%;
  }

  .btn.btn-primary {
    width: 100%;
    margin-top: 20px;
  }
}

.logo-group {
  width: 109px;
  height: 20px;
  object-fit: contain;
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}

.navbar-brand {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  display: flex;
  flex-direction: row;
  margin-left: -8px;
}

.navbar-brand span {
  color: #000000;
}

.navbar-brand-sol {
  font-size: 11.48px !important;
  font-weight: 500 !important;
  letter-spacing: 10%;
  line-height: 100%;
  margin-top: 5px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  top: 44.3px;
  left: 74px;
}

.bi-chevron-down {
  font-size: 16px;
  margin-left: 5px;
}

.contact-btn {
  background: #1f63ff;
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  transition: 0.3s;
  
}
.btn-primary{
  font-family: Bricolage Grotesque;
font-weight: 700;
font-style: Bold;
font-size: 14px;
line-height: 28px;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
text-transform: capitalize;
}

.contact-btn:hover {
  background: #0d4ee6;
}
.bi-chevron-down::before {
  display: inline-block;
  transition: transform 0.3s ease;
}

.mega-dropdown:hover > .nav-link .bi-chevron-down::before,
.mega-dropdown.active > .nav-link .bi-chevron-down::before {
  transform: rotate(180deg);
}

/* Hero Section */

.hero {
  padding: 220px 0 0;
  text-align: center;
  overflow: hidden;
  background-image: url("../images/homepage/hero-section-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  max-height: 865px;
}

/* .blurred-circle-purple {
  background-color: #615fff;
  border-radius: 50%;
  filter: blur(260px);
  opacity: 100%;
  /* display: flex;
    position: relative; */
/* top: 5px;
  left: 95%;
  z-index: 1;
}
.blurred-circle-blue {
  background-color: #51a2ff;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 100%;
  /* display: flex;
    position: relative; */
/* top: 5px;
  left: 95%; */
/* z-index: 1; */
/* }
.blurred-circle-pink {
  background-color: #c27aff;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 100%; */
/* display: flex;
    position: relative; */
/* top: 5px;/ */
/* z-index: 1; 
}  */

.hero h1 {
  font-size: 46px;
  color: #111827;
  line-height: 1.2;
  font-family: "Bricolage Grotesque", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 550;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.hero p {
  color: #000000;
  font-size: 22px;
  width: 70%;
  margin: 20px auto;
  line-height: 1.8;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* .hero-btn {
  background: #1f63ff;
  color: white;
  border: none;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  padding: 24px 54px !important;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
} */

.hero .btn-primary {
  background: #1f63ff;
  color: white;
  border: none;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  padding: 12px 30px !important;
  border-radius: 5px;
  font-size: 18px;
  margin-top: 10px;
 font-weight: 500;
}

.btn-primarye {
  background: #1f63ff;
  color: white;
  border: none;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  padding: 8px 30px !important;
  border-radius: 5px;
  font-size: 18px;
  /* margin-top: 10px; */
  width: 163px;
  height: 43px;

}

.btn-primarye a{
  justify-content: center;
}

.btn-primarye:hover {
  background: #0d4ee6;
  color: white;
}

.hero .btn-primary:hover {
  background: #0d4ee6;
  color: white;
}

.phone-content {
  content: none;
}

.phone-image {
  width: 90%;
  height: auto;
  margin-top: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: -5%;
}
.hero > .container {
  height: 780px;
}

.phone-wrapper {
  margin-top: 70px;
  position: relative;
}


/* who we are  */




.section-subtitle {
  max-width: 1200px;
  margin: auto;

  font-size: 40px !important;
  line-height: 1.25;
  font-weight: 700;
  color: #1a1a1a;
  font-family: "Bricolage Grotesque", sans-serif !important;
}

.section-subtitle .word {
  opacity: 0.1;
  display: inline-block;
  transform: translateY(20px);
  transition:
    opacity 0.35s ease,
    transform .5  s ease;
}


.char{
  opacity:0;
  /* transition:opacity .9s linear; */
}

.char.visible{
  opacity:1;
  font-family: "Bricolage Grotesque", sans-serif !important;
max-width: 500px !important;
 transition:opacity .3s linear;
}


.section-subtitle .word.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-center {
  padding: 60px 0;
}

.text-center h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  font-family: "Bricolage Grotesque", sans-serif !important;
  margin-bottom: 18px;
  line-height: 100%;
  font-optical-sizing: auto;
  padding: 40px 20px;
  /* margin-top: 60px; */
  padding-top: 60px;
}

.section-title,
.industries h2 {
 background:
        linear-gradient(90deg,
          #101828 32%,
          #193CB8 50%,
          #101828 65%),
        linear-gradient(0deg,
          rgba(0, 0, 0, 0),
          rgba(0, 0, 0, 0)),
        linear-gradient(0deg,
          rgba(0, 0, 0, 0.2),
          rgba(0, 0, 0, 0.2));

      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}

.text-center h1 {
  padding: 20px 40px 80px;
  font-size: 48px !important;
  font-weight: 600;
  line-height: 1.2;
  color: #000000;
  font-family: "Bricolage Grotesque", sans-serif !important;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  max-width: 1000px;
}

.six-grid {
  grid-template-columns: repeat(3, 1fr);
}

.three-grid {
  grid-template-columns: repeat(3, 1fr);
}

.mega-item {
  padding: 18px;
  border-radius: 18px;
  transition: 0.3s;
  width: 281px;
  height: 188px;
}

.mega-item.active {
  background: #f4f5ff;
}

.mega-item:hover {
  background: #f7f8ff;
}


.mega-item h4 {
  font-family: Bricolage Grotesque;
font-weight: 600;
font-style: SemiBold;
font-size: 18px;
line-height: 130%;
letter-spacing: 0%;
text-transform: capitalize;

  margin-bottom: 12px;
  color: #111;
}

.mega-left-card {
  width: 320px;
  background: #f8f8f8;
  border-radius: 18px;
  padding: 18px;
  flex-shrink: 0;
}

.mega-image {
  width: 100%;
  height: 140px;
  background: #dcdcdc;
  border-radius: 14px;
  margin-bottom: 25px;
}

.mega-left-card h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}

.mega-left-card p {
  color: #6f6f6f;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.mega-btn {
  width: 100%;
  height: 56px;
  border: 1px solid #3461ff;
  background: #fff;
  border-radius: 10px;
  color: #3461ff;
  font-weight: 600;
  transition: 0.3s;
}

.mega-btn:hover {
  background: #3461ff;
  color: #fff;
}

.mega-dropdown:hover .dropdown-menu {
  display: flex;
}

/* ai dashboard  section */

.ai-section {
  background-color: #f8f9fc;
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}

.ai-badge-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.ai-badge span {
  color: #555;
  font-size: 14px;
  font-family: "Space Grotesk", sans-serif;
}

.ai-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  border: 1px solid #e4e7ee;
  border-radius: 40px;
  padding: 10px 18px;
  font-size: 14px;
  color: #555;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  width: auto;
  justify-self: center;
}

.ai-badge i {
  color: #4f46e5;
}

.ai-heading {
  font-size: 60px !important;
  line-height: 60px;
  font-weight: 600;
  color: #1d2433;
  letter-spacing: -1.5px;
  margin-bottom: 70px;
  margin-top: 0 !important;
  font-family: "Bricolage Grotesque", sans-serif;
  padding-top: 0 !important;
}

.ai-heading span {
  color: #4f5dff;
}

.dashboard-wrapper {
  max-width: 1150px;
  margin: auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 rgba(0, 0, 0, 0.08);
  cursor: none;
  position: relative;
}

.dashboard-img {
  width: 100%;
  display: block;
}

/* 
.dashboard-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  max-width: 1150px;
  margin: auto;
  cursor: none;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
}

.dashboard-img {
  width: 100%;
  display: block;

  border-radius: 28px;
} */

.custom-cursor {
  position: absolute;
  width: 120px;
  height: 120px;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  z-index: 20;
  
}

.dashboard-wrapper:hover .custom-cursor {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cursor-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ai-features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e5e7ef;
}

.ai-feature-item {
  padding: 30px 24px;
  text-align: center;
  border-right: 1px solid #e5e7ef;
}

.ai-feature-item:last-child {
  border-right: none;
}

.ai-feature-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1d2433;
  margin-bottom: 12px;
  font-family: "Bricolage Grotesque", sans-serif;
}

.ai-feature-item p {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;

  transition: 0.35s ease;
}

.video-close{
  position:absolute;
  /* top:60px; */
  right:-70px;
  width:52px;
  height:52px;
  border:none;
  border-radius:50%;
  background:transparent;
  color:#ffffff;
  font-size:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:20;
  transition:.3s ease;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}

.video-close:hover{
  transform:rotate(90deg);
}

.video-modal.active {
  visibility: visible;
  opacity: 1;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.video-container {
  position: relative;
  z-index: 5;
  width: 80%;
  max-width: 1000px;
}

.popup-video {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .ai-heading {
    font-size: 58px;
  }
}

@media (max-width: 992px) {
  .ai-heading {
    font-size: 46px;
  }

  .ai-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-feature-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .custom-cursor {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 576px) {
  .text-center h1 {
    font-size: 28px !important;
    padding-bottom: 30px !important;
  }

  .partner-slider::before {
    width: 100px !important;
  }

  .partner-slider::after {
    width: 100px !important;
  }

  .ai-section {
    padding: 80px 0;
  }

  .ai-heading {
    font-size: 25px !important;
    padding: 0 !important;
  }

  .ai-features {
    /* grid-template-columns: 1fr; */
    grid-template-columns: repeat(1, 4fr) !important;
  }

  .ai-feature-item {
    border-right: none;

    border-bottom: 1px solid #e5e7ef;
  }

  .ai-feature-item:last-child {
    border-bottom: none;
  }

  .video-container {
    width: 92%;
  }
}

/* industries */

.industries {
  padding: 30px 0;
  background-image: url("../images/homepage/pattern.png");
  background-size: 1425px;
  padding: 60px 0;
}

.second-row {
  padding-right: 0px !important;
}
.second-row .col-lg-4:last-child {
  padding-right: 0 !important;
}

.industries h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  font-family: "Bricolage Grotesque", sans-serif !important;
  /* background: linear-gradient(179.54deg, #000000 26.92%, #081441 98.47%);
   -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  margin-bottom: 18px;
}

.industries > .container > p {
  text-align: center;
  font-size: 18 px;
  color: #000000;
  margin-bottom: 40px;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
}
.industries .row {
  margin-bottom: 30px;
}

.industry-card {
  background: linear-gradient(to bottom right, #f7efff, #ffffff);
  border: 1px solid #e7e3ef;
  border-radius: 24px;
  padding: 0px 35px 10px 33px;
  min-height: 100%;
  display: flex;
  flex-direction: column;

  justify-content: flex-start;
}

.card-2 {
  padding-right: 0% !important;
}

.industry-small-wrapper {
  flex: 1;
  display: flex;
  gap: 24px;
}

.industry-image {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin: 20px 0;
}
.industry-card h3 {
  font-size: 26px;
  font-weight: 500;
  line-height: 100%;
  font-family: "Bricolage Grotesque", sans-serif !important;
  margin-bottom: 20px;
  color: #1d1d1d;
}
.industry-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #3e3e3e;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
}
.industries .container {
  position: relative;
  z-index: 2;
}
/* 
@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 auto;
    width: 49%;
  }
}
@media (max-width: 768px) {
  .industries .row {
    row-gap: 20px;
  }
} */

/* our valuable partners section */

.section-who-title {
  text-align: center;
  font-size: 24px !important;
  color: #000000 !important;
  line-height: 100%;
  font-weight: 400 !important;

  font-family: "Bricolage Grotesque", sans-serif !important;

  /* background: linear-gradient(
    to right,
    #000000 0%,
    #101828 20%,
    #193cb8 50%,
    #101828 80%,
    #000000 100%
  ) !important;

  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important; */
  margin-bottom: 18px;
}

.section-partners {
  padding-bottom: 60px;
  background: #f9f9fb;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marquee 45s linear infinite;
}

.partner-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* LEFT FADE */

.partner-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    90.87deg,
    #f9f9fb 44.99%,
    rgba(249, 249, 251, 0.877616) 66.56%,
    rgba(249, 249, 251, 0.673082) 75.15%,
    rgba(249, 249, 251, 0.653802) 77.54%,
    rgba(249, 249, 251, 0) 95.15%
  );
}

.partner-slider::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 100%;
  z-index: 2;

  background: linear-gradient(
    270deg,
    #f9f9fb 44.99%,
    rgba(249, 249, 251, 0.877616) 66.56%,
    rgba(249, 249, 251, 0.673082) 75.15%,
    rgba(249, 249, 251, 0.653802) 77.54%,
    rgba(249, 249, 251, 0) 95.15%
  );
}

.partner-logo {
  width: 180px;
  height: 50px;
  object-fit: contain;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.infrastructure {
  text-align: center;
  padding: 100px 80px 40px;
}

.infrastructure h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 46px;
  color: #222222;
  font-family: "Bricolage Grotesque", sans-serif !important;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
  font-style: semibold;
}

/* .infrastructure-img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
} */
.infrastructure-image {
  width: 100%;
  max-width: 1200px;
  height: 340px;
  margin: 0 auto;
  object-fit: contain;
  background: url("../images/homepage/infrastructure.png") center/contain no-repeat;
}

@media (max-width: 768px) {
  .infrastructure-image {
    height: 500px;
    background-image: url("../images/homepage/infrastructure-mobile.png");
  }
}


.value-img {
  width: 90px;
  height: 90px;
  padding: 20px;
}
.value-card {
  border: 1px solid #e7e3ef;
  border-radius: 24px;
  padding: 30px 35px;
  background-color: white;
  height: 100%;
  margin: 5px;
  width: 98%;
}

.value-card:hover {
  box-shadow: 0 1px 2px 2px #00000015;
}

.value-card h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  font-family: "Bricolage Grotesque", sans-serif !important;
  margin-bottom: 20px;
  color: #161616;
  letter-spacing: 0%;
}

.value-card p {
  font-size: 18px;
  line-height: 159%;
  color: #696868;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0%;
}

#values {
  padding: 20px 30px;
  max-width: 1350px;
  margin: 0 auto;
}

.why-enerweb {
  padding: 60px 0;
  background: white;
}

.why-enerweb .section-title-value {
  color: #173ea5;
  font-size: 48px !important;
  font-weight: 700;
}

.why-enerweb h2{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.text-center {
  margin-bottom: 0 !important;
  padding: 0;
}

.info-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 22px;
    height: 100%;
    max-height: 240px;
   border:1px solid #e5e7eb;
  transition: 0.3s ease;
}

/* .info-card:hover {
     box-shadow: 0 10px 20px rgb(6, 89, 245, 0.2);
  /* box-shadow: 0 8px 4px rgba(31, 99, 255, 0.35); /
  transform: translateY(-3%);
} */

.info-icon {
  width: 65px;
  margin-bottom: 25px;
}

.info-card h3 {
  font-size: 20px;
  line-height: 100%;
  font-weight: 600;
  color: #3e3e3e;
  margin-bottom: 18px;
  font-family: "Bricolage Grotesque", sans-serif !important;
  font-style: semibold;
}

.info-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #3e3e3e;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
}
.center-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
  min-height: 620px;
}

.main-image {
  width: 100%;
  height: 100%;
  max-height: 504px;
  object-fit: cover;
  border-radius: 4px;
  position: relative;
}

.glass-video {
  opacity: 0.95;
  position: absolute;
  border-radius: 30px;
  top: 18%;
  left: 14.7%;
  width: 252px !important;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

.container,
.container-fluid {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

/* FAQ Section  */

.qa-section {
  width: 100%; 
  overflow: hidden;
  /* max-width: 800px; */
}

.custom-accordion-card {
  width: 100% !important;
  max-width: 100% !important;
}

.accordion-button {
  font-size: 18px;
  line-height: 1.5;
  padding: 18px 20px;
  word-break: break-word;
}

.accordion-body {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  padding: 15px 20px;
  color: #6a7282;
}

.text-light {
    --bs-text-opacity: 1;
    justify-self: center;
    color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

@media (max-width: 576px) {
  .section-title {
    font-size: 30px !important;
    line-height: 1.3;
  }

  .qa-section > .container {
    padding: 15px;
  }

  .accordion-button {
    font-size: 16px;
    padding: 16px 14px;
  }

  .accordion-body {
    font-size: 14px;
    padding: 14px;
  }
  .glass-video {
    opacity: 0.95;
    position: absolute;
    border-radius: 30px;
    top: 17%;
    left: 12%;
    width: 352px auto;
  }
}

.qa-section > .container > .h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  font-family: "Bricolage Grotesque", sans-serif !important;

  background: linear-gradient(
    to right,
    #000000 0%,
    #101828 20%,
    #193cb8 50%,
    #101828 80%,
    #000000 100%
  ) !important;

  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-bottom: 18px;
  text-align: center;
}

/* .custom-accordion-card .accordion-button::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary);
  background-image: none;
  transition: all 0.3s ease;
} */

.custom-accordion-card .accordion-button::after {
  content: "+";
  font-size: 32px;
  color: #000000;
  background-image: none;
  transition: all 0.3s ease;

  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.custom-accordion-card .accordion-button:not(.collapsed)::after {
  content: "×";
}
.custom-accordion-card .accordion-button:not(.collapsed)::after {
}
.custom-accordion-card {
  border: none !important;
  border-bottom: 1px solid #dcdcdc !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  width: 700px;
  justify-content: center;
  justify-self: center;
}

.accordion-item {
  border: none !important;
  border-bottom: 1px solid #dcdcdc !important;
}

.accordion-button {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  font-family: "Bricolage Grotesque", sans-serif !important;
  font-weight: 600;
  font-size: 24px;
  color: #3e3e3e;
  line-height: 56px;
  text-align: center;
}

.accordion-button:focus {
  box-shadow: none !important;
  border: none !important;
  background: none !important;
}

.accordion-button:not(.collapsed) {
  background: none !important;
  color: #3e3e3e;
  font-weight: 600;
}

.qa-section > .container {
  padding: 30px;
  max-width: 800px;
}

/* <----empty-space---> */

.empty-section {
  height: 400px !important;
  /* background: linear-gradient(to top, #b78383, #ffffff); */
  background: linear-gradient(
    358deg,
    #0659f5 -150.87%,
    rgb(255, 255, 255) 65.41%
  );
}

/* ready to innovate */

.cta-section {
  height: 320px;
  background: linear-gradient(
    358deg,
    #0659f5 -150.87%,
    rgb(255, 255, 255) 65.41%
  );
  position: relative;
}

.cta-card {
  background: #fff;
  width: 1108px;
  max-height: 300px;
  margin: auto;
  padding: 55px 93px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: absolute;
  left: 50%;
  bottom: -140px;
  transform: translateX(-50%);
  z-index: 10;

}


.cta-card h2 {
      padding: 0px 0 !important;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 30px !important;
    font-family: "Bricolage Grotesque", sans-serif !important;
    margin-bottom: 40px;
}

.cta-card p {
  font-size: 24px;
  line-height: 100%;
  font-style: normal;
  color: #222222;
  margin: 20px 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
}

/* Mobile */

@media (max-width: 992px) {
  .center-image {
    min-height: 450px;
  }

  .info-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .why-enerweb {
    padding: 70px 0;
  }

  .why-enerweb .section-title {
    font-size: 34px !important;
  }

  .info-card {
    padding: 28px 22px;
  }

  .info-card h3 {
    font-size: 22px;
  }

  .info-card p {
    font-size: 15px;
  }
}

/* FOOTER */

.footer-section {
  background: #020817;
  padding: 180px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-section .row {
  align-items: flex-start;
}

.footer-logo {
  width: 170px;
  margin-bottom: 35px;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-contact-item i {
  color: #ffffff;
  font-size: 15px;
  margin-top: 5px;
}

.footer-contact-item p,
.footer-contact-item a {
  color: #b9bcc7;
  font-size: 13px;
  line-height: 2;
  text-decoration: none;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.social-link {
  color: #ffffff;
  font-size: 18px;
  transition: 0.3s ease;
}

.social-link:hover {
  color: #1f63ff;
  transform: translateY(-3px);
}

.footer-sidetopics {
  display: flex;
  justify-content: flex-end;
  gap: 75px;
  flex-wrap: wrap;
}

.footer-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  font-family: "Space Grotesk", sans-serif;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #c0c1c6;
  font-weight: 400;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.8;
  font-family: "Space Grotesk", sans-serif;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 60px;
  padding-top: 22px;
}

.footer-bottom p {
  color: #7d8190;
  font-size: 12px;
  margin: 0;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
}

@media (max-width: 1200px) {
  .footer-sidetopics {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .footer-section {
    padding: 120px 0 30px;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-sidetopics {
    justify-content: flex-start;
    margin-top: 40px;
    gap: 50px;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding: 100px 0 30px;
  }

  .footer-logo {
    width: 130px;
    margin-bottom: 25px;
  }

  .footer-sidetopics {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }

  .footer-title {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-contact-item p,
  .footer-contact-item a {
    font-size: 12px;
    line-height: 1.8;
  }

  .social-link {
    font-size: 16px;
  }

  .footer-bottom {
    margin-top: 40px;
    text-align: center;
  }
}

/* tech stack  */

.tech-stack-section {
  background-image: url("../images/homepage/tech-stack-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 60px ;
  position: static;
  overflow: hidden;

}

/* .tech-stack-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #1f63ff;
  filter: blur(220px);
  opacity: 0.12;
  top: -120px;
  left: -120px;
}

.tech-stack-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #5f2eff;
  filter: blur(220px);
  opacity: 0.1;
  bottom: -150px;
  right: -150px;
} */

.tech-heading {
  color: #ffffff;
  font-size: 32px !important;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 70px;
  margin-top: 39px !important;
  font-family: "Bricolage Grotesque", sans-serif !important;
}

.tech-wrapper {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 40px 40px;
  background: rgba(7, 0, 25, 0.82);
  backdrop-filter: blur(12px);
 min-height: 384px;
}

.tech-tabs {
  max-width: 720px;
  width: 100%;
  margin: 0 auto 70px;
  background: #1b1045;
  border-radius:  4px;
  /* padding: 8px; */
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  /* gap: 52px; */
  flex-wrap: wrap;
}

.tech-tab {
  min-width: 180px;
  border: none;
  outline: none;
  background: transparent;
  color: #8f88b7;
  font-size: 18px;
  font-weight: 400;
  padding: 13px 13px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.35s ease;
  font-family: "Space Grotesk", sans-serif;
}

.tech-tab.active {
  background: linear-gradient(90deg, #6be8ff, #1f63ff);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(31, 99, 255, 0.35);
}

.tech-tab:hover {
  color: #ffffff;
}

.tech-content {
  display: none;
  animation: fade 0.45s ease;
}

.tech-content.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 560px;
  margin: auto;
}

.backend-grid {
  max-width: 500px;
  grid-template-columns: repeat(3, 1fr);
}

.mobile-grid {
  max-width: 500px;
  grid-template-columns: repeat(3, 1fr);
}

.database-grid {
  max-width: 180px;
  grid-template-columns: repeat(1, 1fr);
}

.tech-card {
  /* border-radius: 18px; */
  display: flex;
   justify-content: center; 
   /*align-items: center; */
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: "";
  position: absolute;
  width: 12%;
  height: 120%;
}

.tech-logo {
  width:80px;
  height: 80px;
  object-fit: contain;
  transition: 0.35s ease;
}

.tech-stack-section .dots-top {
  position: absolute;
  top: 120px;
  left: 22%;
}

.tech-stack-section .dots-bottom {
  position: absolute;
  bottom: 100px;
  right: 12%;
}

@media (max-width: 1200px) {
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .tech-heading {
    font-size: 46px;
  }

  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tech-tab {
    min-width: 170px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .tech-wrapper {
    padding: 50px 25px;
  }

  .tech-tabs {
    justify-content: center;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .tech-stack-section {
    padding: 80px 0;
  }

  .tech-heading {
    font-size: 34px;
  }
  .tech-stack-section::after {
    width: 0;
  }

  .tech-wrapper {
    padding: 40px 20px;
  }

  .tech-tab {
    min-width: 135px;
    font-size: 16px;
    padding: 14px 16px;
  }

  .tech-grid {
    gap: 20px;
  }

  .tech-card {
    height: 95px;
    align-items: center;
        justify-content: center;
    }
  }



/* SOLUTIONS SECTION */

.solutions-section {
  background: linear-gradient(180deg, #000000 0%, #03123d 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.solution-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 70px;
}

.mini-title {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 14px;
  font-family: "Space Grotesk", sans-serif;
}

.solution-heading {
  color: #ffffff;
  font-size: 40px;
  font-weight: 600;
  line-height: 56px;
  font-family: "Bricolage Grotesque", sans-serif;
}

.solution-para {
  max-width: 620px;
  color: #9e9cab;
  font-size: 26px;
  line-height: 1.6;
  text-align: right;
  font-family: "Space Grotesk", sans-serif;
}

.solution-accordion {
  position: relative;
  /* padding-bottom: 400px; */
}
.solution-item {
  position: sticky;
  top: 145px;
  background: #050014;
  border: 1px solid rgba(93, 76, 255, 0.18);
  border-radius: 24px;
  overflow: hidden;
  max-height: 120px;
  transition:
    max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
  z-index: 10;
}

.solution-item:not(:first-child) {
  margin-top: -2px;
}

.solution-item.active {
  max-height: 900px;
  z-index: 20;
  overflow: visible;
}

.solution-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 100px 16px 60px;
  min-height: 95px;
}

.solution-header h3 {
  color: #ffffff;
  font-size: 34px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  font-family: "Bricolage Grotesque", sans-serif !important;
}

.solution-logo {
  width: 100px;

  object-fit: contain;
}

.solution-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 28px 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.45s ease 0.1s;
}
.solution-item.active .solution-body {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.solution-content p {
  color: #9e9cab;
  font-size: 28px;
  line-height: 1.7;
  font-family: "Space Grotesk", sans-serif;
}

.solution-image {
  width: 600px;
  max-height: 400px;
  margin-left: 40px !important;
  object-fit: contain;
}
@media (max-width: 1400px) {
  .solution-header h3 {
    font-size: 32px;
  }
  .solution-content p {
    font-size: 22px;
  }
}

@media (max-width: 1200px) {
  .solution-item.active {
    min-height: auto;
  }
  .solution-body {
    grid-template-columns: 1fr;
  }
  .solution-heading {
    font-size: 52px;
  }
  .solution-para {
    font-size: 24px;
  }
}

/* Large Mobile / Small Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .solution-top {
    flex-direction: column;
    gap: 30px;
  }
  .solution-para {
    text-align: left;
  }
  .solution-header h3 {
    font-size: 28px;
  }
  .solution-logo {
    width: 120px;
  }
  .solution-content p {
    font-size: 20px;
  }
  .solution-item.active {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .solutions-section {
    padding: 90px 0;
  }
  .solution-heading {
    font-size: 42px;
  }
  .solution-para {
    font-size: 18px;
  }
  .solution-item {
    min-height: 82px;
    top: 80px;
  }
  .solution-item:not(:first-child) {
    margin-top: -18px;
  }
  .solution-item.active {
    min-height: auto;
  }
  .solution-header {
    min-height: 82px;
    padding: 28px;
  }
  .solution-header h3 {
    font-size: 26px;
  }
  .solution-logo {
    width: 95px;
  }
  .solution-body {
    grid-template-columns: 1fr;
    padding: 0 28px 28px;
    gap: 30px;
  }
  .solution-content p {
    font-size: 14px;
  }
  .solution-image {
    max-height: 140px;
    width: auto;
  }
  .solution-header h3 {
    font-size: 18px;
    font-family: "Bricolage Grotesque", sans-serif !important;
  }
}

@media (max-width: 576px) {
  .solution-heading {
    font-size: 34px;
  }
  .solution-header {
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 18px;
  }
  .solution-logo {
    display: inline;
    width: 50px;
  }
  .solution-content p {
    font-size: 14px;
    line-height: 1.8;
    font-family: "Space Grotesk", sans-serif;
  }
}

@media (max-width: 1200px) {
  .mega-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .navbar {
    width: 94%;
  }

  .mega-menu {
    width: 100%;
    position: static;
    transform: none;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .mega-dropdown:hover .mega-menu {
    display: flex;
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }

  .mega-left-card {
    width: 100%;
  }

  .ai-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .industry-small-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }

  .hero {
    padding-top: 280px;
  }

  .text-center h2 {
    padding: 20px;
    /* margin-bottom: 0; */
    padding-top: 40px;
  }

  .hero p {
    font-size: 18px;
  }

  .infrastructure {
    padding: 20px;
  }

  .infrastructure h1 {
    font-size: 28px;
    line-height: 1.4;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-tab {
    min-width: 170px;
    font-size: 18px;
  }

  .accordion-button {
    font-size: 20px;
    line-height: 1.5;
  }

  .cta-card {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 14px 18px;
    position: fixed;
    z-index: 1000;
  }

  .hero {
    padding-top: 150px;
  }
  .hero > .container {
    height: 519px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero .btn-primary{
    width: auto;
  }

  #values .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 15px;
  }

  .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 15px;}

        .tech-tabs {
        justify-content: center;
        width: 260px;
    }

  .infrastructure h1 {
    font-size: small;
  }

  .tech-grid {
    gap: 20px;
  }

  .tech-logo {
    width: 48px;
    height: 48px;
  }

  .tech-tab {
    min-width: 130px;
    font-size: 15px;
    padding: 14px 16px;
  }

  .partner-logo {
    width: 100px;
  }

  .footer-section {
    padding: 120px 20px;
  }

  .empty-section {
    height: 280px;
  }

  .cta-section {
    height: 160px;
  }

  .cta-card {
    width: 94%;
    padding: 24px 18px;
    bottom: -90px;
    border-radius: 12px;
  }

  .cta-card h2 {
    font-size: 26px;
    line-height: 1.3;
    text-align: center;
  }

  .cta-card p {
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
  }

  .cta-card .btn {
    width: 100%;
    margin-top: 10px;
  }
}
