@font-face {
  font-family: 'Host Grotesk';
  src: url('../Fonts/Cygre-Regular.ttf');
}

@font-face{
  font-family: 'Cygre';
  src: url('../Fonts/HostGrotesk-Regular.ttf');
}


@font-face {
  font-family: 'Cygre SemiBold';
  src: url('../Fonts/Cygre-SemiBold.ttf');
}

@font-face {
  font-family: 'Cygre Medium';
  src: url('../Fonts/Cygre-Medium.ttf');
}


  
* {
  margin: 0;
  padding: 0;
}

 /* Navigation */
 .nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 10;
  display: flex;
  height: 12vh;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  box-sizing: border-box;
}

.nav.hidden {
  transform: translateY(-100%);
}

.logo {
  width: 20%;
  margin-left: 120px; /* Added inward spacing from left */
  display: flex;
  align-items: center;
}

.logo img {
  height: auto;
  width: 100%;
  object-fit: contain;
  min-width: 150px;
  max-width: 200px;
}

.nav-options {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  margin-right: 120px; /* Added inward spacing from right */
}

.nav-options a {
  text-decoration: none;
  color: white;
  font-family: "Host Grotesk", sans-serif;
  font-size: 16px;
  white-space: nowrap;
}

.link {
  display: flex;
  align-items: center;
  position: relative;
}

.dot {
  color: #153d80;
  padding-right: 10px;
  font-size: 20px;
  visibility: hidden;
  transition: visibility 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.link:hover .dot {
  visibility: visible;
  opacity: 1;
}

.services-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 20px;
  background: white;
  min-width: 200px;
  padding: 10px 0;
  border-radius: 0 10px 10px 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  color: #363cfd;
  transition: background-color 0.3s ease;
}

.dropdown a:hover {
  background-color: rgba(21, 61, 128, 0.3);
}

.hamburger {
  display: none;
  cursor: pointer;
  margin-right: 25px;
}

@media (min-width: 769px) {
  .link:hover .dropdown {
    display: block;
  }

  .link:hover .arrow {
    transform: rotate(180deg);
  }
}

@media (max-width: 1440px) {
  .logo {
    margin-left: 60px; /* Reduced inward spacing for smaller screens */
  }

  .nav-options {
    margin-right: 60px; /* Reduced inward spacing for smaller screens */
  }
}

@media (max-width: 1024px) {
  .logo {
    margin-left: 20px; /* Minimal spacing for mobile */
    width: auto;
  }

  .nav-options {
    margin-right: 0; /* Remove margin for mobile menu */
    display: none;
    position: absolute;
    top: 12vh;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: auto;
    padding: 20px 0;
    flex-direction: column;
    align-items: center;
  }

  .nav-options.show {
    display: flex;
  }

  .link {
    margin: 15px 0;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .link a {
    font-size: 20px;
    text-align: center;
    padding: 10px 0;
    width: 100%;
  }

  .logo img {
    width: auto;
    height: 40px;
    min-width: unset;
  }

  .dropdown {
    position: static;
    width: 100%;
    background: transparent;
    margin-top: 10px;
  }

  .dropdown a {
    color: white;
    text-align: center;
    padding: 15px;
  }

  .hamburger {
    display: block;
  }

  .has-dropdown.active .dropdown {
    display: block;
  }

  .has-dropdown.active .arrow {
    transform: rotate(180deg);
  }

  .services-link {
    justify-content: center;
    width: 100%;
  }
}
  




/* title image overlay  */
.title-image {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.title-image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.title-image-overlay {
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
  color: white;
  width: 80%;
  height: 100vh;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6% 12%;

}

.btn {
  background: rgba(255, 255, 255, 0.04);
  padding: 13px;
  width: 10%;
  border: solid 2px;
  border-color: rgb(78, 73, 73);
  border-radius: 30px; 
  backdrop-filter: blur(2px);
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 1);
  font-family: 'Host Grotesk';
  font-weight: 300;
  font-size: 12px;
}


.title-image-overlay h1 {
  font-family: "Cygre SemiBold";
  font-size: 56px;
  line-height: 64px;
  
}

.title-image-overlay p {
  font-family: "Host Grotesk";
  color: #929292;
  font-size: 20px;
  line-height: 30px;
  word-wrap: break-word; /* Prevent text from spilling out */
  max-width: 90%; /* Optional: Limit the text width for better readability */
}


@media (max-width:768px){

  .title-image-overlay{
    bottom: 0%;
  }
  .title-image-overlay h1{
    font-size: 32px;
    line-height: 40px;
  }

  .title-image-overlay p{
    font-size: 16px;
    line-height: 20px;
  }

  .btn {
    background: rgba(255, 255, 255, 0.04);
    padding: 13px;
    width: 40%;
    border: solid 2px;
    border-color: rgb(78, 73, 73);
    border-radius: 30px; 
    backdrop-filter: blur(2px);
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 1);
    font-family: 'Host Grotesk';
    font-weight: 300;
    font-size: 12px;
  }


}










/* challenges  */

.container {
  padding: 5% 0;
  height: fit-content;
}

.challenge-title {
  text-align: center;
  margin-bottom: 60px;
}

.heading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  /* width: 50%; */
  padding:20px;
}

.heading-text {
  text-align: center;
  color: #363cfd;
  font-family: "Cygre Medium";
  margin: 0;
  font-size: 24px;
}

.heading-icon {
  display: flex;
  align-items: center;
  background:#363cfd;
  border-radius: 50%;
  padding: 10px;
}

.challenge-title h2 {
  font-size: 32px;
  margin: 0;
  line-height: 1.4;
  font-family: 'Cygre Medium';
  padding: 1% 4%;
}

.challenge-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

.item-wrapper {
  position: relative;
  padding-top: 10px;
  width: 100%;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
  width: 80%;
}

.item-wrapper::before {
  content: '';
  position: absolute;
  top: 12px;
  height: 6px;
  background: linear-gradient(to left, #0000FF, white);
  transition: width 0.8s ease-out;
  width: 0; /* Line starts hidden for animation */
}

.item-wrapper.revealed::before {
  animation: growLine 1s forwards;
}

/* Line animation */
@keyframes growLine {
  100% {
    width: var(--line-width);
  }
}

/* Dynamic widths based on position */
.item-wrapper:nth-child(1)::before {
  --line-width: 20%;
}

.item-wrapper:nth-child(2)::before {
  --line-width: 30%;
}

.item-wrapper:nth-child(3)::before {
  --line-width: 40%;
}

.item-wrapper:nth-child(4)::before {
  --line-width: 50%;
}

.number {
  font-family: 'Cygre Medium';
  background: #0000FF;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: absolute;
  top: 0;
  transform: translate(-50%, 0);
}

/* Align numbers at the end of the line */
.item-wrapper:nth-child(1) .number {
  left: 20%;
}

.item-wrapper:nth-child(2) .number {
  left: 30%;
}

.item-wrapper:nth-child(3) .number {
  left: 40%;
}

.item-wrapper:nth-child(4) .number {
  left: 50%;
}

.item {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 20px;
  margin-top: 15px;
  margin-left: auto;
}

.item-wrapper:nth-child(1) .item {
  margin-left: 20%;
}

.item-wrapper:nth-child(2) .item {
  margin-left: 30%;
}

.item-wrapper:nth-child(3) .item {
  margin-left: 40%;
}

.item-wrapper:nth-child(4) .item {
  margin-left: 50%;
}

.content{
  font-family: 'Host Grotesk';
}
.content h3 {
  color: #0000FF;
  margin: 0 0 10px 0;
  font-size: 20px;
}

.content p {
  margin: 0;
  line-height: 1.6;
  color: #333;
  font-size: 18px;
  line-height: 32px;
}

.item-wrapper.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive styles */
@media (max-width: 768px) {
  .challenge-title h1 {
    font-size: 14px;
  }

  .challenge-title h2 {
    font-size: 20px;
  }

  .content h3 {
    font-size: 16px;
  }

  .content p {
    font-size: 14px;
    line-height: 24px;
  }

  .number {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
}




/* solutions  */

  .image-1 {
    background-image: url("https://cdn.jsdelivr.net/gh/Pranav371/website-hosting@main/Assets/Case-Study-Images/D2C-2.webp");
    height: 70vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0px -55vh 50vh -19vh rgba(12, 13, 52, 1);
  }

  .image-2 {
    background-image: url("https://cdn.jsdelivr.net/gh/Pranav371/website-hosting@main/Assets/Case-Study-Images/Neuro-2.webp");
    height: 70vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0px -55vh 50vh -19vh rgba(12, 13, 52, 1);
  }
  .image-3 {
    background-image: url("https://cdn.jsdelivr.net/gh/Pranav371/website-hosting@main/Assets/Case-Study-Images/Telecom-2.webp");
    height: 70vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0px -55vh 50vh -19vh rgba(12, 13, 52, 0.9);
  }

  .image-4 {
    background-image: url("https://cdn.jsdelivr.net/gh/Pranav371/website-hosting@main/Assets/Case-Study-Images/IT-2.webp");
    height: 70vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0px -55vh 50vh -19vh rgba(12, 13, 52, 0.9);
  }

  .image-5 {
    background-image: url("https://cdn.jsdelivr.net/gh/Pranav371/website-hosting@main/Assets/Case-Study-Images/Finance-2.webp");
    height: 70vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0px -55vh 50vh -19vh rgba(12, 13, 52, 0.9);
  }
  .image-6 {
    background-image: url("https://cdn.jsdelivr.net/gh/Pranav371/website-hosting@main/Assets/Case-Study-Images/Manufacturing-2.webp");
    height: 70vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0px -55vh 50vh -19vh rgba(12, 13, 52, 0.9);
  }


  .image-7 {
    background-image: url("https://cdn.jsdelivr.net/gh/Pranav371/website-hosting@main/Assets/Case-Study-Images/Healthcare-2.webp");
    height: 70vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0px -55vh 50vh -19vh rgba(12, 13, 52, 0.9);
  }
  .the-solutions {
    background-color: rgba(12, 13, 52, 1);
    position: relative;
    /* padding-top: 6%; */
    padding-bottom: 6%;
  }

  .solutions-card {
    background-color: rgba(12, 13, 52, 1);
  }

  .heading-container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding:20px;
}

.heading-text1 {
    color: #e2b745;
    font-family: "Cygre Medium";
    margin: 0;
    font-size: 24px;
}

.heading-icon1{
    display: flex;
    align-items: center;
    background:#e2b745;
    border-radius: 50%;
    padding: 10px;
}

  .the-solutions p {
    font-family: "Host Grotesk";
    font-size: 18px;
    font-weight: 200;
    text-align: center;
    padding-left: 16.5%;
    padding-right: 16.5%;
    line-height: 40px;
    color: rgba(255, 255, 255, 0.64);
    padding-bottom: 100px;
  }

  .the-solutions span{
    font-family: 'Host Grotesk';
    font-size: 18px;
    font-weight: 500;
    line-height: 40px;
    text-align: center;
    color: white;
  }


.key-intiatives-card h2{
  color: rgba(255, 255, 255, 1);
  font-family: 'Cygre Medium';
  font-weight: 300;
  font-size: 24px;
  line-height: 50px;
  padding: 20px;
  padding-left: 225px;
}

.key-intiative p {
  color: rgba(255, 255, 255, 1);
  padding: 15px;
  padding-left: 225px;
  font-family: 'Host Grotesk';
  font-weight: 700;
  font-size: 24px;
  line-height: 39px;
  text-align: left;
  cursor: pointer;
  display: flex;  /* Add this */
  align-items: center;  /* Add this */
  gap: 15px;  /* Add this to create space between icon and text */
}

.key-intiative p span {
  width: 24px;
  height: 24px;
  display: inline-flex;  /* Add this to properly align the SVG */
  align-items: center;  /* Add this */
}


.content1{
  visibility: hidden;
}

.key-intiatives-card hr {
  border: none; /* Remove the default border */
  height: 2px; /* Adjust thickness */
  margin-top: 20px;
  margin-bottom: 20px;
  background: linear-gradient(to right, white, rgba(12, 13, 52, 1)); /* Gradient from gold to blue */
}


.hover-card {
  background-color: rgb(21, 22, 97);
  position: absolute;
  left: 60%;
  right: 12%;
  bottom: 40%;
  top: 55%;
  height: 35%;
  border-radius: 2%;
  box-shadow: 
    /* Left shadow */
    -100px 0 40px rgba(0, 0, 0, 0.25),
    /* Right shadow */
    100px 0 40px rgba(0, 0, 0, 0.4),
    /* Top shadow */
    0 -20px 40px rgba(0, 0, 0, 0.4),
    /* Bottom shadow */
    0 20px 40px rgba(0, 0, 0, 0.4),
    /* Corner shadows for added depth */
    -20px -20px 40px rgba(0, 0, 0, 0.25),
    20px -20px 40px rgba(0, 0, 0, 0.25),
    -20px 20px 40px rgba(0, 0, 0, 0.25),
    20px 20px 40px rgba(0, 0, 0, 0.25);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; /* Smooth transition */
  opacity: 0;
  transform: scale(0.95);
}
.hover-card.active {
  opacity: 1; /* Show hover card */
  pointer-events: auto; /* Allow interactions */
  transform: scale(1);

  box-shadow: 
    /* Left shadow */
    -50px 0 50px rgba(0, 0, 0, 0.5),
    /* Right shadow */
    50px 0 50px rgba(0, 0, 0, 0.5),
    /* Top shadow */
    0 -30px 50px rgba(0, 0, 0, 0.5),
    /* Bottom shadow */
    0 30px 50px rgba(0, 0, 0, 0.5),
    /* Corner shadows for added depth */
    -30px -30px 50px rgba(0, 0, 0, 0.35),
    30px -30px 50px rgba(0, 0, 0, 0.35),
    -30px 30px 50px rgba(0, 0, 0, 0.35),
    30px 30px 50px rgba(0, 0, 0, 0.35);

}


/* for telecom case study  */
.hover-card2 {
  background-color: rgb(21, 22, 97);
  position: absolute;
  left: 60%;
  right: 12%;
  bottom: 40%;
  top: 65%;
  height: 25%;
  border-radius: 2%;
  box-shadow: 
    /* Left shadow */
    -100px 0 40px rgba(0, 0, 0, 0.25),
    /* Right shadow */
    100px 0 40px rgba(0, 0, 0, 0.4),
    /* Top shadow */
    0 -20px 40px rgba(0, 0, 0, 0.4),
    /* Bottom shadow */
    0 20px 40px rgba(0, 0, 0, 0.4),
    /* Corner shadows for added depth */
    -20px -20px 40px rgba(0, 0, 0, 0.25),
    20px -20px 40px rgba(0, 0, 0, 0.25),
    -20px 20px 40px rgba(0, 0, 0, 0.25),
    20px 20px 40px rgba(0, 0, 0, 0.25);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; /* Smooth transition */
  opacity: 0;
  transform: scale(0.95);
}

.hover-card2.active {
  opacity: 1; /* Show hover card */
  pointer-events: auto; /* Allow interactions */
  transform: scale(1);

  box-shadow: 
    /* Left shadow */
    -50px 0 50px rgba(0, 0, 0, 0.5),
    /* Right shadow */
    50px 0 50px rgba(0, 0, 0, 0.5),
    /* Top shadow */
    0 -30px 50px rgba(0, 0, 0, 0.5),
    /* Bottom shadow */
    0 30px 50px rgba(0, 0, 0, 0.5),
    /* Corner shadows for added depth */
    -30px -30px 50px rgba(0, 0, 0, 0.35),
    30px -30px 50px rgba(0, 0, 0, 0.35),
    -30px 30px 50px rgba(0, 0, 0, 0.35),
    30px 30px 50px rgba(0, 0, 0, 0.35);

}





/* Mobile Version */
@media (max-width: 1180px) {

  .the-solutions .text{
      font-family: "Host Grotesk";
      font-size: 18px;
      font-weight: 200;
      text-align: center;
      padding: 3% 8%;
      line-height: 40px;
      color: rgba(255, 255, 255, 0.64);
      /* padding-bottom: 100px; */
  }
  .hover-card.active{
    display: none;
  }

  .hover-card{
    visibility: hidden;
  }
  .key-intiatives-card {
    padding: 10px;
}

.key-intiative {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* padding: 15px; */
    margin-bottom: 10px;
    font-family: 'Host Grotesk';
}

.key-intiative p {
    flex: 50%;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    padding-left: 0.5%;
}


.key-intiative .content1 {
    flex: 50%;
    opacity: 1;
    height: auto;
    margin-left: 15px;
    font-size: 14px;
    visibility: visible;
    color: white;
    padding-right: 5%;
}
.key-intiatives-card hr{
  background: rgba(255, 255, 255, 0.12);
}
.key-intiatives-card h2{
  text-align: center;
  padding: 0;
}
.key-intiative svg{
  display: none;
}
}










/* results  */

.the-results {
  padding: 6% 10%;
}

.the-results h1{
  color: rgba(54, 60, 253, 1);
  font-family: 'cygre medium';
  font-weight: 500;
  font-size: 28px;
  line-height: 45px;
  text-align: center;
}

.the-results p{
  font-family: "Host Grotesk";
  font-weight: 400;
  font-size: 40px;
  line-height: 64px;
  text-align: center;
  color: #5e5a5a;
  margin-left: 16%;
  margin-right: 16%;
  padding-bottom: 50px;
}

/* .results-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: 'Host Grotesk';

}

.result1{
  width: 30%;
  padding: 2%;
  border-right: 2px solid rgba(12, 13, 52, 1);
  border-bottom: 2px solid red;
}

.result2{
  width: 30%;
  padding: 2%;
  border-bottom: 2px solid red;
}

.result3{
  width: 30%;
  padding: 2%;
  border-right: 2px solid red;
}

.result4{
  width: 30%;
  padding: 2%;
} */


/* body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: #f5f5f5;
} */

.gradient-table {
  display: table;
  width: 80%; /* Adjust as needed */
  border-spacing: 0;
  margin: 0 auto; /* Center align the table */
  text-align: left; /* Align text inside cells */
}

.row {
  display: table-row;
}

.cell {
  display: table-cell;
  width: 50%; /* Ensure equal width for all cells */
  padding: 5%;
  vertical-align: top;
  background-color: #ffffff;
  position: relative;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 32px;

  font-family: 'Host Grotesk';
}

/* Add a vertical gradient between the two cells in each row */
.row:nth-child(odd) .cell:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to top, #363cfd, transparent); /* Gradient for vertical border */
}

/* Reverse gradient for the next row */
.row:nth-child(even) .cell:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to top, transparent, #363cfd); /* Reverse gradient for vertical border */
}



/* Inner bottom border */
.row:not(:last-child) .cell::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #363cfd); /* Gradient for horizontal border */
}


/* Reverse the gradient on the next cell's bottom border */
.row:not(:last-child) .cell:nth-child(even)::before {
  background: linear-gradient(to right, #363cfd, transparent); /* Reverse gradient for opposite side */
}
 


/* Ensure alignment of gradient edges */
.cell::before,
.cell::after {
  z-index: 1;
}

.cell {
  z-index: 2; /* Content stays above gradients */
  text-align: justify;
}

/* Add subtle shadow to table */
.gradient-table {
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
  border-radius: 8px; /* Optional rounded corners */
  overflow: hidden; /* Ensure borders are clipped */
}





.mobile-results{
  display: none;
  font-family: 'Host Grotesk';
}

.content{
  padding-bottom: 20px;
  padding-top: 20px;
}

.mobile-results hr:nth-of-type(even){
  border: none; /* Remove the default border */
  height: 2px; /* Adjust thickness */
  margin-top: 20px;
  margin-bottom: 20px;
  background: linear-gradient(to right,transparent,#363cfd); /* Gradient from gold to blue */
}

.mobile-results hr:nth-of-type(odd){
  border: none; /* Remove the default border */
  height: 2px; /* Adjust thickness */
  margin-top: 20px;
  margin-bottom: 20px;
  background: linear-gradient(to left,transparent,#363cfd); /* Gradient from gold to blue */
}



@media (max-width:768px){
  .mobile-results{
    display: block;
  }

  .gradient-table{
    display: none;
  }

  .the-results h1{
    font-size: 24px;
  }

  .the-results p{
    font-size: 24px;
    line-height: 1.3;
    width: 100%;
    margin: 0;
  }
  .the-results h2{
    font-size: 16px;
  }

  .the-results .heading-icon{
    padding: 4px;
  }


}





/* customer */
.customer {
  display: flex;
  min-height: 500px;
  background: #363cfd;
  color: white;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.customer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 40%;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, 
      #363cfd 0%,
      #363cfd 10%,
      rgba(54, 60, 253, 0.99) 20%,
      rgba(54, 60, 253, 0.98) 30%,
      transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.customer-txt {
  flex: 1;
  padding: 5rem;
  z-index: 2;
}
.customer-txt hr {
  background: rgba(255, 255, 255, 0.13);
  height: 2px;
  border: none;
  width: 40%;
  margin: 0;
}

.customer-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 500px;
  overflow: hidden;
}

.customer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  opacity: 0.9;
}

/* Additional Text Styles */
.customer-txt h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  font-family: 'Cygre';
}

.customer-txt p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-family: 'Host Grotesk';
}

/* Button Styles */
.button-container {
  display: flex;
  align-items: center;
  background-color: #b2b9fe;
  width: fit-content;
  padding: 1%;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 30px;
}

.responsive-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  background-color: #FFFFFF;
  color: #000000;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.button-container:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.button-arrow {
  font-size: 20px;
  transition: transform 0.2s;
}

/* Media Queries */

/* Hide image and adjust layout for smaller screens (up to 768px) */
@media (max-width: 768px) {
  .customer {
    flex-direction: column;
    padding: 1.5rem;
    min-height: auto;
  }

  .customer::after {
    display: none;
  }

  .customer-txt {
    padding: 1rem;
  }

  .customer-txt hr {
    width: 100%;
    margin: 1rem auto;
  }

  .customer-img {
    display: none;
  }

  .customer-txt h1 {
    font-size: 2rem;
  }

  .customer-txt p {
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .button-container {
    margin-top: 20px;
  }

  .responsive-button {
    font-size: 16px;
    padding: 12px 20px;
    gap: 10px;
  }

  .button-arrow {
    font-size: 18px;
  }
}

/* Landscape mode for larger screens only (min-width: 769px) */
@media screen and (orientation: landscape) and (min-width: 769px) {
  .customer-img {
    display: flex;
    height: 500px;
  }

  .customer {
    gap: 1.5rem;
  }

  .customer-txt {
    padding: 5rem;
    text-align: left;
  }

  .customer-txt hr {
    width: 40%;
    margin: 1rem 0;
  }
}

/* Adjustments for small landscape screens between 769px and 900px */
@media (orientation: landscape) and (min-width: 769px) and (max-width: 900px) {
  .customer {
    flex-direction: row;
    min-height: 350px;
  }

  .customer-txt h1 {
    font-size: 2rem !important;
  }

  .customer-txt p {
    font-size: 0.9rem !important;
  }

  .customer-img {
    height: 300px;
  }

  .button-container {
    margin-top: 1rem;
  }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
  .customer-txt {
    padding: 3rem;
  }

  .customer-img {
    height: 450px;
  }
}







/* footer */
.immersive-footer {
  position: relative;
  background: linear-gradient(to bottom, #000510, #000);
  color: #fff;
  padding: 6rem 2rem 2rem;
  overflow: hidden;
}

/* Animated Background */
.footer-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(54, 60, 253, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(54, 60, 253, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: top;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 30px;
  }
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
}

/* Hero Section */
.footer-hero {
  text-align: center;
  margin-bottom: 5rem;
}

.glowing-text {
  font-family: "Cygre";
  font-size: 3rem;
  background: linear-gradient(90deg, #363cfd, #e2b745);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2rem;
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(54, 60, 253, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(226, 183, 69, 0.7));
  }
}

.cta-button a {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: "Cygre";
  font-size: 1.125rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #363cfd, #4b50fd);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.button-highlight {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-button a:hover {
  transform: translateY(-2px);
}

.cta-button a:hover .button-highlight {
  left: 100%;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 4rem;
  /* margin-bottom: 4rem; */
}

/* Company Section */
.logo-container {
  position: relative;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 40px;
  position: relative;
  z-index: 1;
}

.logo-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(54, 60, 253, 0.2), transparent);
  filter: blur(10px);
  animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.company-tagline {
  font-family: "Host Grotesk";
  color: #888;
  margin-bottom: 2rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.hover-float:hover {
  transform: translateY(-5px);
  color: #e2b745;
}

/* Section Styles */
.section-title {
  font-family: "Cygre", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, #363cfd, #e2b745);
}

.animated-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.animated-list li {
  margin-bottom: 1rem;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.animated-list a {
  font-family: "Host Grotesk", sans-serif;
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.animated-list a:hover {
  color: #fff;
  /* transform: translateX(10px); */
}

/* Contact Cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  background: rgba(54, 60, 253, 0.1);
  border: 1px solid rgba(54, 60, 253, 0.2);
  border-radius: 10px;
  padding: 1rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-card:hover {
  transform: translateX(3px);
  background: rgba(54, 60, 253, 0.15);
}

.card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Host Grotesk", sans-serif;
  color: #888;
}
.card-content a {
  text-decoration: none;
  color: #888;
}
.contact-icon {
  color: #363cfd;
  flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(54, 60, 253, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.legal-links a {
  color: #888;
  text-decoration: none;
  font-family: "Host Grotesk", sans-serif;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #fff;
}

.separator {
  color: #363cfd;
  font-size: 0.5rem;
}

.copyright {
  color: #888;
  font-family: "Host Grotesk", sans-serif;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .company-section {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .immersive-footer {
    padding: 4rem 1.5rem 1.5rem;
  }

  .glowing-text {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    flex-direction: column;
    gap: 1rem;
  }

  .separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .glowing-text {
    font-size: 1.5rem;
  }

  .cta-button a {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.125rem;
  }

  .contact-card {
    padding: 0.875rem;
  }
}

/* Hover Effects */
@media (hover: hover) {
  /* .animated-list li:hover {
    transform: translateX(5px);
  } */

  .social-icon:hover {
    transform: translateY(-5px) scale(1.1);
  }

  /* .contact-card:hover {
    transform: translateX(5px) translateY(-2px);
    box-shadow: 0 5px 15px rgba(54, 60, 253, 0.15);
  } */
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-section {
  animation: fadeIn 0.6s ease-out forwards;
}