@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300..700&display=swap');

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

body {
    background: #ecf0f3;
    overflow-x: hidden;
}

html{
  overflow-x: hidden;
}

nav {
    width: 100%;
    padding: 12px 0;
    background: #ecf0f3;
    box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1, inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
    position: fixed;
    z-index: 1000000;
}

nav .menu {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu .logo img {
    width: 200px;
}

.menu ul {
    list-style: none;
    display: flex;
}

.menu ul a {
    margin: 0 8px;
    text-decoration: none;
    font-size: 1rem;
    color: #31344b;
    font-weight: 400;
    display: inline-flex;
    padding: 10px 12px;
    border-radius: 15px;
    box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
    position: relative;
}

.menu ul a:hover:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    box-shadow: inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
  }
  
  .menu ul a:hover {
    color: #538d6f; 
}

nav label.btn {
    color: #31344b;
    font-size: 18px;
    cursor: pointer;
    display: none;
}

nav label.cancel {
    position: absolute;
    top: 20px;
    left: 85%;
    font-size: 2rem;
    color: #1e556a;
}

nav label.bars{
  font-size: 2rem;
  position: relative;
  top: 10px;
  left: 0;
  color: #1e556a;
}

#check {
    display: none;
}

.nav-menu-right{
  position: relative;
  display: flex;
  justify-content: space-between;
}

.contact-support-btn {
  margin: 0 8px 0 8rem;
  text-decoration: none;
  font-size: 1rem;
  color: #000;
  font-weight: 400;
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 40px;
  box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
  position: relative;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.contact-support-btn span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.contact-support-btn:before,
.contact-support-btn:after {
  position: absolute;
  content: "";
  height: 0%;
  width: 1px;
 box-shadow:
   -1px -1px 20px 0px rgba(255,255,255,1),
   -4px -4px 5px 0px rgba(255,255,255,1),
   7px 7px 20px 0px rgba(0,0,0,.9),
   4px 4px 5px 0px rgba(0,0,0,.8);
}
.contact-support-btn:before {
  right: 0;
  top: 0;
  transition: all 500ms ease;
}
.contact-support-btn:after {
  left: 0;
  bottom: 0;
  transition: all 500ms ease;
}
.contact-support-btn:hover{
  background: transparent;
  color: #76aef1;
  box-shadow: none;
}
.contact-support-btn:hover:before {
  transition: all 500ms ease;
  height: 100%;
}
.contact-support-btn:hover:after {
  transition: all 500ms ease;
  height: 100%;
}
.contact-support-btn span:before,
.contact-support-btn span:after {
  position: absolute;
  content: "";
  box-shadow:
   -1px -1px 20px 0px rgba(255,255,255,1),
   -4px -4px 5px 0px rgba(255,255,255,1),
   7px 7px 20px 0px rgba(0,0,0,.4),
   4px 4px 5px 0px rgba(0,0,0,.3);
}
.contact-support-btn span:before {
  left: 0;
  top: 0;
  width: 0%;
  height: .5px;
  transition: all 500ms ease;
}
.contact-support-btn span:after {
  right: 0;
  bottom: 0;
  width: 0%;
  height: .5px;
  transition: all 500ms ease;
}
.contact-support-btn span:hover:before {
  width: 100%;
}
.contact-support-btn span:hover:after {
  width: 100%;
}


@media (max-width: 940px) {
  
    .menu ul {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 400px;
        padding-top: 45px;
        height: 100%;
        background: #ecf0f3;
        box-shadow: 0 5px 10px #b0b0b5;
        z-index: 12;
        transition: all 0.3s ease;
    }

    .menu ul a {
        display: block;
        font-size: 23px;
        width: 100%;
        margin-top: 30px;
        box-shadow: none;
        text-align: center;
    }

    .menu ul a:hover:before {
        box-shadow: none;
    }

    nav label.bars {
        display: block;
    }

    #check:checked ~ .nav-menu-right ul {
      left: 0; /* Slide in when checked */
  }

  #check:checked ~ .nav-menu-right label.bars {
    display: none;
}

    #check:checked ~ .nav-menu-right label.cancel {
      display: block;
  }

  .contact-support-btn {
    margin: 8rem 2.5rem;
    width: 80%;
    text-align: center;
    text-decoration: none;
    font-size: 1.5rem;
    color: #000;
    font-weight: 400;
    display: block;
    padding: 10px 20px;
    border-radius: 40px;
    box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
    position: relative;
    transition: all 0.3s ease;
    border: none;
    outline: none;
  
  }

  .menu .logo img {
    width: 150px;
}
    
   
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 105%;
    left: 0%;
    border-radius: 1rem;
    filter: drop-shadow(0.25rem 0.25rem 0.5rem #0005);
}

.dropdown-content .drop-list {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    transform-style: preserve-3d;
    perspective: 1000px;
    border-radius: 20px;
}

.dropdown-content .drop-list .drop-list-item {
    height: 3rem;
    display: flex;
    align-items: center;
    background: linear-gradient(#00000005, #0000), #fff;
    box-shadow: inset 0 0 1rem -0.15rem #0002;
    transition: transform 0.35s, box-shadow 0.35s, background 0.35s;
    opacity: 0;
    animation: firstShow 0.5s ease-in-out, show 0.15s linear forwards;
}

.dropdown-content .drop-list .drop-list-item a {
    background: #fff;
    width: 100%;
    margin: auto;
    text-decoration: none;
    font-size: 1rem;
}

.dropdown-content .drop-list .drop-list-item a:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0 0 0 0;
    box-shadow: 0 5px 10px #b0b0b5;
    
}

.dropdown-content .drop-list .drop-list-item:nth-child(1) {
    animation-delay: 0.20s;
}

.dropdown-content .drop-list .drop-list-item:nth-child(2) {
    animation-delay: 0.30s;
}

.dropdown-content .drop-list .drop-list-item:nth-child(3) {
    animation-delay: 0.40s;
}

.dropdown-content .drop-list .drop-list-item:nth-child(4) {
    animation-delay: 0.50s;
}

.dropdown-content .drop-list .drop-list-item:nth-child(5) {
    animation-delay: 0.60s;
}

.dropdown-content .drop-list .drop-list-item:nth-child(2) a,
.dropdown-content .drop-list .drop-list-item:nth-child(3) a,
.dropdown-content .drop-list .drop-list-item:nth-child(4) a,
.dropdown-content .drop-list .drop-list-item:nth-child(5) a {
    border-radius: 0 0 0 0;
}

.dropdown-content .drop-list .drop-list-item:first-child {
    border-radius: 1rem 1rem 0 0;
}

.dropdown-content .drop-list .drop-list-item:nth-child(1) a {
    border-radius: 1rem 1rem 0 0;
}

.dropdown-content .drop-list .drop-list-item:last-child {
    border-radius: 0 0 1rem 1rem;
}

.dropdown-content .drop-list .drop-list-item:nth-child(5) a {
    border-radius: 0 0 1rem 1rem;
}

.dropdown-content .drop-list .drop-list-item:hover,
.dropdown-content .drop-list .drop-list-item:focus-within {
    transform: translate3d(0, 0, 3rem);
}

.dropdown-content .drop-list .drop-list-item:hover+.drop-list-item,
.dropdown-content .drop-list .drop-list-item:focus-within+.drop-list-item {
    box-shadow: inset 0 1rem 1rem -1rem #0003;
    transform: translate3d(0, 0, 2rem);
}

.dropdown-content .drop-list .drop-list-item:hover+.drop-list-item+.drop-list-item,
.dropdown-content .drop-list .drop-list-item:focus-within+.drop-list-item+.drop-list-item {
    box-shadow: inset 0 1rem 0.5rem -0.75rem #0002;
}

.dropdown-content .drop-list .drop-list-item:hover+.drop-list-item+.drop-list-item+.drop-list-item,
.dropdown-content .drop-list .drop-list-item:focus-within+.drop-list-item+.drop-list-item+.drop-list-item {
    box-shadow: inset 0 1rem 0.5rem -0.75rem #0002;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #31344b;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}




/* Styles for the dropdown content */
@media(max-width: 940px) {
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 105%;
    left: 28%;  /* You can adjust this value if needed */
    border-radius: 1rem;
    filter: drop-shadow(0.25rem 0.25rem 0.5rem #0005);
  }

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



  .dropdown-content .drop-list .drop-list-item a {
    background: #fff;
    width: 100%;
    margin: auto;
    text-decoration: none;
    text-align: left;
  }

  .drop-list-item {
    width: 100%; /* Ensure this is 100% */
  }
}




@keyframes firstShow {

    0%,
    100% {
        transform: perspective(1000px) translate3d(0, 0, 0em);
    }

    50% {
        transform: perspective(1000px) translate3d(0, 0, 3em);
    }
}

@keyframes show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (prefers-reduced-motion) {
    nav * {
        transition-duration: 0s !important;
        animation-duration: 0s !important;
    }
}




/* ---------------------------------------------------------------HERO SECTION---------------------------------------------------------------- */

.flex-container{
    background-color: #ecf0f3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8rem;
}

.content{
    max-width: 50%;
    padding-left: 6rem;
}

.content h1 {
  font-family: 'Poppins';
  color: #000;
  font-size: clamp(2.5rem, 3vw, 4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-shadow: 10px 10px 12px #bdbdbd;
  opacity: 0; /* Start with the text invisible */
  transform: translateY(-150px); /* Start above its final position */
}

.content h1.in-view{
  animation: fadeInDown 1s ease-out forwards; /* Apply the animation */
}

@keyframes fadeInDown {
  0% {
      opacity: 0;
      transform: translateY(-150px); /* Start off-screen above */
  }
  100% {
      opacity: 1;
      transform: translateY(0); /* End at normal position */
  }
}

.content p{
  font-size: clamp(1rem, 1.5vw, 1.5rem);
    margin-bottom: 2rem;
  }
  
  .content p.in-view{
    animation: fadeInFromBottom 1s ease-out forwards;
    
}

.image{
  display: flex;
  justify-content: center;
    max-width: 50%;
}

.image img {
  width: 80%;
  opacity: 0; /* Start with the image invisible */
  transform: translateX(150px) ;
  filter: drop-shadow(0px 15px 10px rgba(0, 0, 0, 0.438));
}

.image img.in-view{
  animation: fade_in_right 1s forwards;
  animation-delay: .3s;

}

@keyframes fade_in_right {
  0% {
      opacity: 0; /* Start invisible */
      transform: translateX(150px); /* Start off-screen to the right */
  }
  100% {
      opacity: 1; /* Fade in the image */
      transform: translateX(0); /* End at normal position */
  }
}



.hero-btn {
  margin: 10px 8px;
  text-decoration: none;
  font-size: 1.5rem;
  color: #000;
  font-weight: 400;
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 15px;
  box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
  position: relative;
  transition: color 0.3s ease, box-shadow 1s ease; /* Slow down the box-shadow transition */
  border: none;
  outline: none;
  opacity: 0; /* Initially invisible */
  transform: translateY(20px); /* Start slightly below */
}

.hero-btn.in-view{
  animation: fadeInFromBottom 1s ease-out forwards; /* Apply animation */

}

/* Define the fade-in animation from bottom to top */
@keyframes fadeInFromBottom {
  0% {
      opacity: 0;
      transform: translateY(80px); /* Start 20px below */
  }
  100% {
      opacity: 1; /* Fade in */
      transform: translateY(0); /* End at normal position */
  }
}

.hero-btn:hover {
  content: '';
  border-radius: 15px;
  box-shadow: inset -3px -3px 7px #fff, inset 3px 3px 5px #ceced1; /* Change the box-shadow */
  text-shadow: none;
  color: #538d6f;
}




@media (max-width: 940px){
  .flex-container{
    display: block;
  }

  .content{
    max-width: 100%;
    text-align: center;
    padding: 1rem;
  }

  .image{
    max-width: 100%;
    height: auto;
  }
}

@media(max-width: 650px){
  .hero-btn{
    display: block;
    margin: 15px auto;
    width: 300px;
  }
}


/* ----------------------------STATS COUNTER------------------------------- */

.counter {
  overflow: hidden;
}

.counter h2 {
  font-size: clamp(2rem, 3vw, 4rem);
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 2rem 0;
  color: #1e556a;
}

.counter h3 {
  text-align: center;
  color: #1e556a;
  font-size: 0.8rem;
  font-family: 'Poppins';
}

.counter span {
  font-size: 3rem;
  color: #2b2b2b;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
}

.counter h3:nth-child(2) {
  border-inline: 2px solid #14213d;
}

.counter h3:nth-child(3) {
  border-right: 2px solid #14213d;
}

#suffix {
  font-size: 3rem;
  color: #2b2b2b;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
}

.container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 90%;
  margin: 2rem auto 0rem auto;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
}

.counter h3:nth-child(1),
.counter h3:nth-child(2),
.counter h3:nth-child(3),
.counter h3:nth-child(4) {
  padding: 0 4rem;
}

@media (max-width: 1800px){
  .container {
    grid-template-columns: repeat(2, 1fr);
}

.counter h3:nth-child(3) {
  border-right: none;
}

.counter h3:nth-child(2) {
  border-inline: none;
}

.counter h3:nth-child(1),
.counter h3:nth-child(2),
.counter h3:nth-child(3),
.counter h3:nth-child(4) {
    padding: 2rem 2rem;
}

}

@media (max-width: 1200px) {
  .counter h2 {
      font-size: 3rem;
  }

  .counter span,
  #suffix {
      font-size: 2.5rem;
  }

  .counter h3 {
      font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  .counter h2 {
      font-size: 2.5rem;
  }

  .counter span,
  #suffix {
      font-size: 2.5rem;
  }

  .counter h3 {
      font-size: 1rem;
  }

  .container {
      grid-template-columns: 1fr;
  }

  .counter h3:nth-child(1),
  .counter h3:nth-child(2),
  .counter h3:nth-child(3),
  .counter h3:nth-child(4) {
      padding: 1rem 1rem;
  }
}

@media (max-width: 480px) {
  .counter h2 {
      font-size: 2rem;
  }

  .counter span,
  #suffix {
      font-size: 2.5rem;
  }

  .counter h3 {
      font-size: 1rem;
  }

  .container {
      padding: 1rem;
      margin: 2rem auto;
  }

  .counter h3:nth-child(1),
  .counter h3:nth-child(2),
  .counter h3:nth-child(3),
  .counter h3:nth-child(4) {
      padding: 0.5rem 0.5rem;
  }
}



/* -----------------------LOGO CAROUSEL------------------- */


  :root{
    --bg-clr: #ecf0f3;
  }
  
  .carousel-wrapper {
    --width: 250px;
    --gap: 0;
    --num-items: 22;
    --ani-offset: calc(var(--width) * var(--num-items) * -1);
    --ani-speed: 70s;
    
    width: 70%;
    overflow: hidden;
    position: relative;
    left: 15%;
  }
  .carousel-wrapper::before,
  .carousel-wrapper::after{
    content: '';
    position: absolute;
    width: 20%;
    height: 100%;
    z-index: 1;
    top: 0;
  }
  .carousel-wrapper::before{
    left: 0;
    background-image: linear-gradient(to right,var(--bg-clr) 0%,transparent 50%);
  }
  .carousel-wrapper::after{
    right: 0;
    background-image: linear-gradient(to left,var(--bg-clr) 0%,transparent 50%);
  }
  
  .carousel {
    display: flex;
    align-items: center;
    padding-top: 6rem;
    animation: slide var(--ani-speed) linear infinite;
    /* filter: grayscale(1); */
  }

  .carousel .items{
    flex: 1 0 var(--width);
    text-align: center;
    min-height: 250px;
  }
  
  .carousel .items > img{
    width: 40%;
    height: auto;
    object-fit: cover;
  }
  
  @keyframes slide {
    100% {
      transform: translateX(var(--ani-offset));
    }
  }


  @media(max-width: 600px){
    .carousel{
      height: 300px;
    }
  }

   
/* -----------------------ABOUT SECTION------------------------ */


.about{
    margin-bottom: 5rem;
}

.content-container{
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4%;
}

.about-heading{
    width: 100%;
    border-left: 2px solid #000;
    padding-left: 5%;
}

.about-heading.in-view{
  animation: fadeInLeft 1.5s ease;
}

@keyframes fadeInLeft {
  from {
      opacity: 0;
      transform: translateX(-150px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

.about-heading{
  max-width: 40%;
    width: 100%;
    border-left: 2px solid #1e556a;
    padding-left: 5%;
}



.about-heading h2{
    font-size: 4rem;
    text-shadow: 10px 10px 12px #b0b0b5;
    text-transform: uppercase;
}

.about-intro{
  visibility: hidden;
  max-width: 60%;
}

.about-intro.in-view{
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 1s;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      visibility: hidden;
  }
  to {
      opacity: 1;
      visibility: visible;
  }
}

.about-intro p{
  font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 3rem;
    
}

.about-intro i{
    margin-left: 1rem;
    display: flex;
    align-items: center;
}

.about-btn{
  margin: 10px 8px;
  text-decoration: none;
  font-size: 1.5rem;
  color: #31344b;
  font-weight: 400;
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 15px;
  box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
  position: relative;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  cursor: pointer;
}

.about-btn:hover{
content: '';
border-radius: 15px;
box-shadow: inset -3px -3px 7px #fff, inset 3px 3px 5px #ceced1;
text-shadow: none;
}

.about-btn:hover{
    color: #538d6f;
}


@media (max-width: 940px){

  .about{
    padding: 0;
    margin-bottom: 2rem;
  }
  
  .content-container{
    max-width: 100%;
    display: block;
    padding: 2rem;
  }

  .about-heading{
    border-left: none;    
    padding: 1rem;
  }

  .about-heading h2{
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.about-heading{
  max-width: 100%;
    width: 100%;
    border-left: 2px solid #1e556a;
    padding-left: 5%;
}

.about-intro{
  visibility: hidden;
  max-width: 100%;
}
}


/* ----------------------------------SERVICES SECTION------------------------------------- */

  
.services{
    background-color: #ecf0f3;
    width: 100%;
    overflow: hidden;
    position: relative;
}

  .services-container::before{
    content: '';
    position: absolute;
    top: 0;
    left: 30%;
    width: 100%;
    height: 100%;
    background: #1e556a;
    clip-path: circle(50% at center 70%);
    z-index: -1; 
  }

  .services-container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1;
  }

  .services-btn{
    margin: 10px 8px;
    text-decoration: none;
    font-size: 1.5rem;
    color: #31344b;
    font-weight: 400;
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 15px;
    box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
    position: relative;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    cursor: pointer;
}

.services-btn:hover{
  content: '';
  border-radius: 15px;
  box-shadow: inset -3px -3px 7px #fff, inset 3px 3px 5px #ceced1;
  text-shadow: none;
}

  .card-container,
  .card-container-2{
    display: flex;
  }

  .card-container,
  .card-container-2{
    justify-content: center;
  }
  
  .card-container .service-card,
  .card-container-2 .service-card{
    position: relative;
    width: 280px;
    height: 400px;
    margin: 30px;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.5);
    border-left: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(5px);
  }
  
  .card-container .service-card .content,
  .card-container-2 .service-card .content{
    padding: 10px;
    text-align: center;
    transform: translateY(20px); 
    transition: .7s;
  }
  
  .services-container .service-card:hover .content{
    transform: translateY(0px);
  }
  
  .card-container .service-card .content h2,
  .card-container-2 .service-card .content h2{
    position: absolute;
    top: -70px;
    right: -50px;
    font-size: 8rem;
    color: rgba(0, 0, 0, 0.1);
    pointer-events: none;
  }
  
  .card-container .service-card .content h3,
  .card-container-2 .service-card .content h3{
    font-size: 1.2rem;
    text-align: center;
    color: #fff;
    z-index: 1;
    margin-bottom: 1rem;
  }
  
  .card-container .service-card .content p,
  .card-container-2 .service-card .content p{
    font-size: 0.8rem;
    color: #fff;
    font-weight: 300;
  }
  
  .card-container .service-card .content a,
  .card-container-2 .service-card .content a{
    position: relative;
    display: block;
    padding: 8px 25px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .services-headings{
    color: #000000;
    max-width: 40%;
    padding: 0 6rem;
    opacity: 0;
  }

  .services-headings.in-view {
    animation: fade_in_right 1s ease forwards;
    animation-delay: 0.5s;
  }
  
  @keyframes reveal_corner {
    0% { 
      transform: scale(0); 
      opacity: 0; 
      visibility: hidden;
    }
    100% { 
      transform: scale(1); 
      opacity: 1; 
      visibility: visible;
    }
  }

 .small-service-heading{
    font-weight: 300;
    color: #000;
  }

  .services-headings h2{
    font-size: clamp(3rem,4vw,4rem);
    color: #000;
    text-shadow: 10px 10px 12px #b0b0b5;
    text-transform: uppercase;
  }

  .services-headings p{
    color: #000;
    font-size: clamp(1rem,1.2vw,1.2rem);
  }

  .services-headings a{
    margin: 2rem 10px 0 10px;
    font-size: 1rem;
    color: #31344b;
    font-size: 1.5rem;
    font-weight: 400;
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 15px;
    box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
    position: relative;
    transition: all 0.3s ease;
  }

  .services-headings a:hover::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    box-shadow: inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
  }

  .services-headings a:hover{
    color: #538d6f;
  }

  .services-headings i{
    margin-left: 1rem;
    display: flex;
    align-items: center;
  }

  .service-blocks{
    max-width: 60%;
  }


  @media (max-width: 1400px){

    .services-container{
      display: block;
    }
    
    .services-headings{
      max-width: 100%;
      margin-bottom: 4rem;
      margin-top: 4rem;
    }

    .service-blocks{
      max-width: 100%;
    }

    .services-container::before{
      content: '';
      position: absolute;
      top: 0;
      left: 0%;
      width: 100%;
      height: 100%;
      background: #1e556a;
      clip-path: circle(50% at center 70%);
      z-index: -1; 
    }
  }

  @media (max-width: 940px){
    .card-container{
      display: grid;
      place-items: center;
      grid-template-columns: repeat(2, minmax(200px, 1fr));
    }

    .card-container-2{
      display: grid;
      place-items: center;
      grid-template-columns: repeat(2, minmax(200px, 1fr));
    }

    .card-container .service-card .content a,
    .card-container-2 .service-card .content a{
      position: relative;
      display: block;
      width: 150px;
      padding: 8px 25px;
      background: transparent;
      color: #fff;
      border: 2px solid #fff;
      border-radius: 15px;
      text-decoration: none;
      font-weight: 500;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .services-container::before{
      content: '';
      position: absolute;
      top: 0;
      left: 0%;
      width: 100%;
      height: 100%;
      background: #1e556a;
      clip-path: circle(50% at center 60%);
      z-index: -1; 
    }

    .card-container .service-card .content,
    .card-container-2 .service-card .content{
      padding: 4rem;
      text-align: center;
      transform: translateY(20px); 
      transition: .7s;
    }
    
    .services-container .service-card:hover .content{
      transform: translateY(0px);
    }

    .card-container .service-card .content h2,
    .card-container-2 .service-card .content h2{
      position: absolute;
      top: -70px;
      right: -10px;
      font-size: 8rem;
      color: rgba(222, 222, 222, 0.1);
      pointer-events: none;
    }
  }

  @media (max-width: 630px){
    .card-container{
      display: grid;
      place-items: center;
      grid-template-columns: repeat(1, minmax(200px, 1fr));
    }

    .card-container-2{
      display: grid;
      place-items: center;
      grid-template-columns: repeat(1, minmax(200px, 1fr));
    }

    .service-blocks{
      background-color: #1e556a;
      border-radius: 50px;
    }

    .services-headings{
      max-width: 100%;
      padding: 2rem;
    }
  }


/* ----------------------TESTIMONIAL SECTION-------------------------- */


.testimonial-heading{
    text-align: center;
    margin-top: 7rem;
}

.small-testimonial-heading{
    font-weight: 300;
}

.testimonial-heading h2{
    font-size: clamp(2.5rem,4vw, 4rem);
    color:#000;
    text-shadow: 10px 10px 12px #b0b0b5;
    opacity: 0;
    text-transform: uppercase;
}

.testimonial-heading h2.in-view{
  animation: flipInX 1s ease forwards;
  animation-delay: .3s;
}

@keyframes flipInX {
  0% {
    transform: rotateX(90deg); /* Start from a 90-degree rotation (flipped) */
    opacity: 0; /* Start invisible */
  }
  100% {
    transform: rotateX(0); /* End at normal rotation */
    opacity: 1; /* Fade in to fully visible */
  }
}

  .mycard {
    height: 100%;
    width: 100%;
    max-width: 24rem;

  }
  .cardtitle {
    font-weight: bold;
    --tw-text-opacity: 1;
    color: #1e556a;
    text-align: center;
    font-size: 1.5rem;
  }
  .cardimg {
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.75rem;
    margin-bottom: 1.5rem;
    max-height: 6rem;

    filter: drop-shadow(0px 15px 10px rgba(0, 0, 0, 0.356));
  }
  .carddescription {
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
    text-align: center;
    font-size: 0.8rem;
  }

  .item{
    min-height: 500px;
  }
  
  .slider {
    width: 100%;
    max-width: 100%;
    min-height: 500px;
  }

  .slider input {
    display: none;
  }
  
  .testimonials {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 500px;
    perspective: 500px;
    margin-top: 3rem;
    margin-bottom: 3rem;
  
  }
  .testimonials .item {
    max-width: 20rem;
    border-radius: 1.5rem;
    border-width: 2px;
    top: 0;
    position: absolute;
    box-sizing: border-box;
    background-color: #fff;
    padding: 30px;
    width: 450px;
    text-align: center;
    transition: transform 0.4s;
    -webkit-transform-style: preserve-3d;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    user-select: none;
    cursor: pointer;
    background-color: #ecf0f3;
  }

  .testimonials .item img {
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
  }
  
  .testimonials .item img:hover {
    transform: scale(1.1); /* Scale up on hover */
  
  }
  

  .testimonials .item h2 {
    font-size: 2rem;
  }

  .dots {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .dots label {
    display: block;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    cursor: pointer;
    background-color: #413b52;
    margin: 7px;
    transition: transform 0.2s, color 0.2s;
  }

  .dots i{
    font-size: 2.5rem;
    margin: 0 auto;
    background: #e7e7e7;
    padding: 1.5rem;
    border-radius: 30%;
    color: #1e556a;
    display: none;
  }
  
  /* First */
  #t-1:checked ~ .dots label[for="t-1"] {
    transform: scale(2);
    background-color: #538d6f;
  }
  #t-1:checked ~ .dots label[for="t-2"] {
    transform: scale(1.5);
  }
  #t-1:checked ~ .testimonials label[for="t-1"] {
    z-index: 4;
  }
  #t-1:checked ~ .testimonials label[for="t-2"] {
    transform: translateX(300px) translateZ(-90px) translateY(-15px);
  
    z-index: 3;
  }
  #t-1:checked ~ .testimonials label[for="t-3"] {
    transform: translateX(600px) translateZ(-180px) translateY(-30px);
    z-index: 2;
  }
  #t-1:checked ~ .testimonials label[for="t-4"] {
    transform: translateX(900px) translateZ(-270px) translateY(-45px);
    z-index: 1;
  }
  #t-1:checked ~ .testimonials label[for="t-5"] {
    transform: translateX(1200px) translateZ(-360px) translateY(-60px);
  }
  
  /* Second */
  #t-2:checked ~ .dots label[for="t-1"] {
    transform: scale(1.5);
  }
  #t-2:checked ~ .dots label[for="t-2"] {
    transform: scale(2);
    background-color: #538d6f;
  }
  #t-2:checked ~ .dots label[for="t-3"] {
    transform: scale(1.5);
  }
  #t-2:checked ~ .testimonials label[for="t-1"] {
    transform: translateX(-300px) translateZ(-90px) translateY(-15px);
  }
  #t-2:checked ~ .testimonials label[for="t-2"] {
    z-index: 3;
  }
  #t-2:checked ~ .testimonials label[for="t-3"] {
    transform: translateX(300px) translateZ(-90px) translateY(-15px);
    z-index: 2;
  }
  #t-2:checked ~ .testimonials label[for="t-4"] {
    transform: translateX(600px) translateZ(-180px) translateY(-30px);
    z-index: 1;
  }
  #t-2:checked ~ .testimonials label[for="t-5"] {
    transform: translateX(900px) translateZ(-270px) translateY(-45px);
  }
  
  /* Third */
  #t-3:checked ~ .dots label[for="t-2"] {
    transform: scale(1.5);
  }
  #t-3:checked ~ .dots label[for="t-3"] {
    transform: scale(2);
    background-color: #538d6f;
  }
  #t-3:checked ~ .dots label[for="t-4"] {
    transform: scale(1.5);
  }
  #t-3:checked ~ .testimonials label[for="t-1"] {
    transform: translateX(-600px) translateZ(-180px) translateY(-30px);
  }
  #t-3:checked ~ .testimonials label[for="t-2"] {
    transform: translateX(-300px) translateZ(-90px) translateY(-15px);
  }
  #t-3:checked ~ .testimonials label[for="t-3"] {
    z-index: 3;
  }
  #t-3:checked ~ .testimonials label[for="t-4"] {
    transform: translateX(300px) translateZ(-90px) translateY(-15px);
    z-index: 2;
  }
  #t-3:checked ~ .testimonials label[for="t-5"] {
    transform: translateX(600px) translateZ(-180px) translateY(-30px);
  }
  
  /* Fourth */
  #t-4:checked ~ .dots label[for="t-3"] {
    transform: scale(1.5);
  }
  #t-4:checked ~ .dots label[for="t-4"] {
    transform: scale(2);
    background-color: #538d6f;
  }
  #t-4:checked ~ .dots label[for="t-5"] {
    transform: scale(1.5);
  }
  #t-4:checked ~ .testimonials label[for="t-1"] {
    transform: translateX(-900px) translateZ(-270px) translateY(-45px);
  }
  #t-4:checked ~ .testimonials label[for="t-2"] {
    transform: translateX(-600px) translateZ(-180px) translateY(-30px);
  }
  #t-4:checked ~ .testimonials label[for="t-3"] {
    transform: translateX(-300px) translateZ(-90px) translateY(-15px);
    z-index: 2;
  }
  #t-4:checked ~ .testimonials label[for="t-4"] {
    z-index: 3;
  }
  #t-4:checked ~ .testimonials label[for="t-5"] {
    transform: translateX(300px) translateZ(-90px) translateY(-15px);
  }
  
  /* Fifth */
  #t-5:checked ~ .dots label[for="t-4"] {
    transform: scale(1.5);
  }
  #t-5:checked ~ .dots label[for="t-5"] {
    transform: scale(2);
    background-color: #538d6f;
  }
  #t-5:checked ~ .testimonials label[for="t-1"] {
    transform: translateX(-1200px) translateZ(-360px) translateY(-60px);
  }
  #t-5:checked ~ .testimonials label[for="t-2"] {
    transform: translateX(-900px) translateZ(-270px) translateY(-45px);
    z-index: 1;
  }
  #t-5:checked ~ .testimonials label[for="t-3"] {
    transform: translateX(-600px) translateZ(-180px) translateY(-30px);
    z-index: 2;
  }
  #t-5:checked ~ .testimonials label[for="t-4"] {
    transform: translateX(-300px) translateZ(-90px) translateY(-15px);
    z-index: 3;
  }
  #t-5:checked ~ .testimonials label[for="t-5"] {
    z-index: 4;
  }
 
  
@media(max-width: 600px){
  .dots i{
    display: block;
  }
  
}


  /* ---------------------------OFFER SECTION---------------------------- */


.offer{
  background-color: #ecf0f3;
  padding-top: 2.5rem;
  text-align: center;
}

.offer-description{
  margin-bottom: 5rem;
}
    
.offer-description h2{
  font-size: 2rem;
  color: #1e556a;
}

.price{
    color: #538d6f;
}

.icon-frames{
    margin: -50px 0 100px 0;
    display: flex;
    gap: 40px;
    justify-content: center;
    padding-bottom: 3rem;
}

.frame{
    display: grid;
    place-items: center;
    text-decoration: none;
    font-size: 1rem;
    color: #31344b;
    font-weight: 400;
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
}

.frame i{
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #538d6f;
}

.frame h3{
    color: #1e556a;
    font-size: 1.5rem;
    text-align: center;
}

.frame-link{
  margin: 10px 8px;
  text-decoration: none;
  font-size: 1.5rem;
  color: #31344b;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 15px;
  box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
  position: relative;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.frame.in-view{
  animation: scaleFromCenter 1s ease forwards;
}

@keyframes scaleFromCenter {
  0% {
    transform: scale(0); /* Start scaled down to 0 */
    opacity: 0; /* Start invisible */
  }
  100% {
    transform: scale(1); /* Scale up to full size */
    opacity: 1; /* Fade in to fully visible */
  }
}

.frame-link:hover{
content: '';
border-radius: 15px;
box-shadow: inset -3px -3px 7px #fff, inset 3px 3px 5px #ceced1;
text-shadow: none;
}

@media(max-width: 940px){
  .icon-frames{
    margin: 0;
    display: block;
    width: 80%;
    margin: 0 auto;
    gap: 40px;
    justify-content: center;
}

.offer-description h2{
  font-size: 1.5rem;
}

.price{
  font-size: 3.5rem;
}
}


/* ----------------------------------FOOTER------------------------------- */


.footer{
    display: flex;
    gap: 10rem;
    width: 100%;
    padding: 4rem 6rem;
    background: #ecf0f3; 
    box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1, inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
}

.socials img{
    margin-left: 5rem;
    width: 60%;
    margin-bottom: 1rem;
    text-decoration: none;
    font-size: 2rem;
    color: #31344b;
    font-weight: 400;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
    position: relative;
    transition: all 0.3s ease;
}

.socials p{
    margin-bottom: 2rem;
}

.socials a{
    place-items: center;
    margin: 1rem 8px;
    text-decoration: none;
    font-size: 1.5rem;
    color: #31344b;
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
    position: relative;
    transition: all 0.3s ease;
}

.socials a:hover::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    box-shadow: inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
}

.socials a i{
  margin-top: 2rem;
}

.socials{
    max-width: 30%;
    background-color: #ecf0f3;
}

.footer-nav,
.footer-nav-2,
.links{
  display: grid;
  align-content: flex-start;
  gap: 30px;
  background-color: #ecf0f3;
}

.footer-nav h3,
.footer-nav-2 h3,
.links h3{
    text-decoration: none;
    font-size: 1.5rem;
    color: #1e556a;
}

.footer-nav a,
.footer-nav-2 a,
.links a{
    text-decoration: none;
    color: #000;
}

.footer-nav a:hover,
.footer-nav-2 a:hover,
.links a:hover{
    text-decoration: none;
    color: #538d6f;
}

.footer-zip-btn{
  box-shadow:   -3px -3px 7px #ffffff,  3px 3px 5px #ceced1;
  padding: 10px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .5s ease;
}
.footer-zip-btn:hover{
  box-shadow:  -3px -3px 7px inset #ffffff, inset 3px 3px 5px #ceced1;
  padding: 10px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media(max-width: 1300px){

  .footer{
    display: block;
    gap: 15rem;
    width: 100%;
    padding: 4rem 2rem;
    background: #ecf0f3; 
    box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1, inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
}

.socials {
  max-width: 100%;
  text-align: center;

}

.socials img{
  margin-left: 0rem;
  width: 50%;
}

.socials a{
  place-items: center;
  margin: 2rem 8px;
  text-decoration: none;
  font-size: 2rem;
  color: #31344b;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
  position: relative;
  transition: all 0.3s ease;
}

.socials a i{
  margin-top: 2rem;
}

.footer-nav h3,
.footer-nav-2 h3,
.links h3{
    text-decoration: none;
    color: #1e556a;
    margin-top: 2rem;
}
}

@media(max-width: 600px){
.socials img{
  width: 100%;
}


.footer-zip-btn{
  box-shadow:   -3px -3px 7px #ffffff,  3px 3px 5px #ceced1;
  padding: 10px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .5s ease;
  width: fit-content;
}
.footer-zip-btn:hover{
  box-shadow:  -3px -3px 7px inset #ffffff, inset 3px 3px 5px #ceced1;
  padding: 10px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
}

}


/* ----------------------------------------------------------CONTACT PAGE-------------------------------------------------------- */


.contact-sub-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  padding-top: 8rem;
}

.left-panel,
.right-panel {
  width: 50%;
  padding: 5rem;
}

.left-panel{
  padding: 2rem ;
}

.contact-details {
  display: flex;
  gap: 2rem;
  width: 100%;
}

.left-panel h1,
.right-panel h1 {
  font-size: clamp(2.5rem, 4vw, 5rem);
  text-shadow: 10px 10px 12px #bdbdbd;
  text-transform: uppercase;
}

.left-panel h1.in-view,
.right-panel h1.in-view {
  animation: fadeInLeft 1s ease;
}

.left-panel h1 {
  text-align: left;
}

.right-panel h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.brag-box {
  display: flex;
  justify-content: space-around;
  margin: 4rem 0;
  color: #1e556a;
  font-weight: 500;
  padding: .5rem;
}

.brag-box h3 {
  padding-inline: 3rem;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.details-link {
  display: block;
  text-decoration: none !important;
  color: inherit; /* Keeps text color the same */
  flex-grow: 1;
  min-width: 300px;
}

.details {
  display: flex;
  width: 100%;
  align-items: center;
  margin: 1rem 0;
  box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
  border-radius: 20px;
  padding: 15px 25px;

}

.details-info.in-view {
  animation: scaleFromCenter 1s ease;
}

.details-info a {
  text-decoration: none;
  color: #000;
}

.details-info h2{
  font-size: 1.2rem;
}

.details i {
  margin-right: 2rem;
  font-size: 2rem;
  color: #538d6f;
  box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
  padding: 15px;
  border-radius: 20px;
}

.right-panel img {
  width: 80%;
  box-shadow: inset -3px -3px 7px #fff, inset 3px 3px 5px #bebec0;
  border-radius: 50%;
}

.tech-issue a {
  text-decoration: none;
  color: #000;
}

.tech-issue {
  width: 100%;
  text-align: left;
}

.details-info {
  line-height: 40px;
  max-width: 100%;
}

form {
  padding: 16px;
  width: 400px;
  margin: 0 auto;
}

.segment {
  text-align: center;
}

.segment h1 {
  margin: 10px 0;
}

button, input, textarea {
  border: 0;
  outline: 0;
  font-size: 16px;
  border-radius: 320px;
  padding: 16px;
  background-color: #EBECF0;
  text-shadow: 1px 1px 0 #FFF;
}

label {
  display: block;
  margin-bottom: 24px;
}

.panel form button {
  margin-bottom: 2rem;
}

input {
  margin-right: 8px;
  box-shadow: inset 2px 2px 5px #BABECC, inset -5px -5px 10px #FFF;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
  appearance: none;
  -webkit-appearance: none;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-color: #EBECF0;
  border-radius: 50%;
  box-shadow: inset 2px 2px 5px #BABECC, inset -5px -5px 10px #FFF;
  cursor: pointer;
  position: relative;
}

input[type="checkbox"]:checked::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #538d6f;
  position: absolute;
  top: 6px;
  left: 6px;
}

textarea {
  box-shadow: inset 2px 2px 5px #BABECC, inset -5px -5px 10px #FFF;
  border-radius: 30px;
  padding: 15px;
}

textarea:focus,
input:focus {
  box-shadow: inset 1px 1px 2px #BABECC, inset -1px -1px 2px #FFF;
}

button {
  color: #61677C;
  font-weight: bold;
  box-shadow: -5px -5px 20px #FFF, 5px 5px 20px #BABECC;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  font-weight: 600;
}

button:hover {
  box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
}

button:active {
  box-shadow: inset 1px 1px 2px #BABECC, inset -1px -1px 2px #FFF;
}

.icon {
  margin-right: 8px;
}

button.unit {
  border-radius: 8px;
  line-height: 0;
  width: 48px;
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 8px;
  font-size: 19.2px;
}

button.unit .icon {
  margin-right: 0;
}

button.red {
  display: block;
  width: 100%;
  color: #000;
}

.input-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.input-group label {
  margin: 0;
  flex: 1;
}

.socials-add {
  text-align: center;
  margin-top: 3rem;
}

.contact-CTA .socials {
  margin-bottom: 3rem;
}

.socials-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.socials-btns a {
  margin-right: 1rem;
  place-items: center;
  margin: 2rem 8px;
  text-decoration: none;
  font-size: 2rem;
  color: #31344b;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
  position: relative;
  transition: all 0.3s ease;
}

.socials-btns a:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  box-shadow: inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
}

.contact-page-cta h1 {
  font-size: clamp(2rem, 3vw, 5rem);
  text-shadow: 10px 10px 12px #bdbdbd;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 4rem;
  padding-inline: 1rem;
}

.cta-word {
  color: #1e556a;
}

@media (max-width: 1500px) {
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: .1rem;
  }
}

@media (max-width: 1200px) {
  .contact-sub-container {
    display: block;
    padding: 1rem;
  }

  .left-panel {
    width: 100%;
    padding: 3rem;
  }

  .right-panel {
    width: 100%;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: .1rem;
  }
}

@media (max-width: 600px) {
  .brag-box {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;
  }

  

  .brag-box h3 {
    padding: .5rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin: 2rem 0;
  }

  .border {
    border: none;
  }

  .left-panel {
    padding: .5rem;
    padding-top: 40%;
  }

  form {
    padding: 16px;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }

  .details {
    padding: 15px 15px;
  }

  .right-panel {
    margin-top: 4rem;
    padding: 1rem !important;
  }

  
}

.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  margin-bottom: 1rem;
}

.accordion.in-view {
  animation: fadeInUp 1s ease;
}

.accordion-1,
.accordion-2,
.accordion-3,
.accordion-4,
.accordion-5 {
  opacity: 0;
}

.accordion-1.in-view {
  animation: fadeInUp 1s ease forwards;
  animation-delay: .2s;
}

.accordion-2.in-view {
  animation: fadeInUp 1s ease forwards;
  animation-delay: .4s;
}

.accordion-3.in-view {
  animation: fadeInUp 1s ease forwards;
  animation-delay: .6s;
}

.accordion-4.in-view {
  animation: fadeInUp 1s ease forwards;
  animation-delay: .8s;
}

.accordion-5.in-view {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1s;
}

.tech-issue {
  color: #444444;
  opacity: 0;
}

.tech-issue.in-view {
  animation: fadeInUp 1s ease forwards;
  animation-delay: .6s;
}

#description{
  width: 100%;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.accordion.active,
.accordion:hover {
  background-color: #e6e6e6;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accordion.active:after {
  content: "\2212";
}

.panel {
  background-color: #f1f1f1;
  padding: 0 18px;
  display: block;
  overflow: hidden;
  transition: max-height 0.5s ease; /* Smooth transition for max-height */
  max-height: 0;  /* Initially collapsed */
}

.panel.active {
  max-height: 100%;
}



/* --------------------------------------------------------------SUCCESS PAGE-------------------------------------------------------------- */

.success-message{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  padding: 1rem;
}

.success-heading{
  font-size: clamp(3rem, 5vw, 6rem);
  text-shadow: 10px 10px 12px #bdbdbd;
  margin: 2rem 0;
  text-align: center;
}

.success-description{
  font-size: 1.2rem;
  text-align: center;
}

.success-button{
  margin-top: 2rem;
}

.success-button a{
  text-decoration: none;
  color: #1e556a;

}

.error-heading{
  font-size: clamp(2rem, 3vw, 4.5rem);
  text-shadow: 10px 10px 12px #bdbdbd;
  margin: 2rem 0;
  text-align: center;
}

.design-2-heading{
  font-size: clamp(3rem, 12vw, 15rem);
  text-shadow: 10px 10px 12px #bdbdbd;
  margin: 2rem 0;
  text-align: center;
}

.design-2-message{
    display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  padding: 1rem;
}




/* --------------------------------------------------------------------INDIVIDUAL SERVICES PAGES-------------------------------------------------------------------- */



/* Public Wi-Fi */

.content-service{
  text-shadow: 0 5px 10px #0004;
  padding: 3rem;
  max-width: 50%;
}

.content-service .author{
  font-weight: bold;
  letter-spacing: 10px;
  color: #538d6f;
  padding-bottom: 1rem;
}

.content-service .title{
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: bold;
  line-height: 1.3em;
  color: #000;
  padding-bottom: 1rem;
}

.content-service .title-network{
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: bold;
  line-height: 1.3em;
  color: #000;
  padding-bottom: 1rem;
  opacity: 0;
}

.content-service .title-network.in-view{
animation: fadeInLeft 1.5s ease forwards;
}

.content-service .des{
  font-size: 1.2rem;
}

.service-hero{
  display: flex;
  align-items: center;
  padding: 2rem;
  padding-top: 7rem;
}


.service-hero-image{
  max-width: 40%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-hero-image img {
  width: 50%;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0px 15px 10px rgba(0, 0, 0, 0.356));
  animation: fade_in_right 1.5s ease;
}

.service-hero .title{
  animation: fadeInLeft 1.5s ease;
}

.service-hero .author{
  animation: fadeInLeft 1.5s ease;
}

.service-hero .description{
  animation: fadeInLeft 1.5s ease;
}

.service-hero .spaced{
  animation: fadeInLeft 1.5s ease;
}

.public-wifi-main-title{
  padding: 2rem;
  text-align: center;
 
}

.public-wifi-main-title.in-view{
  animation: flipInX 1.5s ease forwards;
  animation-delay: .5s;
}


.service-hero-image-business{
  max-width: 50%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.public-wifi-intro{
  box-shadow: inset -4px -4px 10px rgba(255, 255, 255, 0.8), inset 4px 4px 8px rgba(0, 0, 0, 0.2);
  padding: 2rem !important;
  margin-top: 2rem;
}

.public-wifi-intro h1{
  font-size: clamp(2rem, 3vw, 5rem);
  text-shadow: 10px 10px 12px #bdbdbd;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 2rem;
  padding-inline: 1rem;

}

.public-wifi-intro p{
  font-size: 1.2rem;
  text-align: center;
  padding-inline: 10rem;
}

.public-wifi-landing-pages-content{
  padding: 2rem;
  opacity: 0;
}

.public-wifi-landing-pages-content.in-view{
  animation: fadeInLeft 1.5s ease forwards;
 
}

.public-wifi-landing-pages-title{
  font-size: clamp(2rem, 2.5vw, 4rem);
  padding-bottom: 2rem;
  text-transform: uppercase;
}

.public-wifi-landing-pages-description{
  font-size: 1.2rem;
}

.public-wifi-service-image{
  display: flex;
  justify-content: center;
}

.public-wifi-service-image img{
  width: 60%;
  opacity: 0;
}

.public-wifi-service-image img.in-view{
  animation: fade_in_right 1.5s ease forwards;
  animation-delay: .5s;
}

.public-wifi-service{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 4rem;
}

.public-wifi-service-2{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 4rem;
}

.public-wifi-service-2 .public-wifi-service-image img{
 width: 40%;
}

.public-wifi-service-2 .public-wifi-service-image img.in-view{
  animation: fadeInLeft 1.5s ease forwards;
  animation-delay: .5s;
}

.public-wifi-service-2 .public-wifi-landing-pages-content.in-view{
  animation: fade_in_right 1.5s ease forwards;
animation-delay: .8s;
}

.public-wifi-service-perks{
  width: 40%;
}

.icon-frames-public-wifi{
  margin: -50px 0 0 0;
    display: flex;
    gap: 40px;
    justify-content: center;
    padding: 3rem;
}

.icon-frames-public-wifi .frame{
  box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
  opacity: 0;
}

.icon-frames-public-wifi .frame.in-view{
  animation: scaleFromCenter 1s ease forwards;
  animation-delay: .5s;
}

.public-wifi-service-cta-btn button{
  opacity: 0;
}

.public-wifi-service-cta-btn button.in-view{
  animation: fadeInUp 1s ease forwards;
  animation-delay: .5s;
}

.public-wifi-service-cta{
  box-shadow: 
   -4px -4px 10px rgba(255, 255, 255, 0.8), 
   4px 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.public-wifi-main-title{
  text-transform: capitalize; 
  padding-top: 3rem; 
}

.public-wifi-main-title h2{
  color: #000;
  text-transform: uppercase;  
  font-size: clamp(2.3rem, 2.5vw, 5rem);
}

@media (max-width: 900px) {
  .public-wifi-service{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 4rem;
  }

  .public-wifi-service-2{
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 4rem;
  }

  .icon-frames-public-wifi{
    margin: -50px 0 100px 0;
      display: flex;
      flex-direction: column;
      gap: 40px;
      justify-content: center;
      padding: 3rem;
  }

  .counter h2{
    margin-bottom: 0rem;
  }
 
}

@media (max-width: 678px) {

  .public-wifi-intro p{
    font-size: 1.2rem;
    text-align: center;
    padding-inline: .5rem;
  }

  .public-wifi-intro h1{
    margin-top: 2rem;
  }

  .public-wifi-service-perks{
    width: 70%;
  }
  
  .public-wifi-service-image .landing-page-img{
    width: 100%;
    padding: 1rem;
  }
}














/* ----------------------------------------------------------------------BUSINESS INTERNET---------------------------------------------------------------------- */
main {
  min-width: 300px;
  max-width: 800px;
  margin: auto;
}

/* Paragraph Styling */
main p {
  font-size: 1em;
  line-height: 1.75em;
  border-top: 3px solid;
  border-image: linear-gradient(to right, #743ad5 0%, #007FFF 100%);
  border-image-slice: 1;
  border-width: 3px;
  margin: 0;
  padding: 80px 40px;
  counter-increment: section;
  position: relative;
  color: #34435E;

}

/* Paragraph Numbering */
main p:before {
  content: counter(section);
  position: absolute;
  border-radius: 50%;
  padding: 10px;
  height: 1.25em;
  width: 1.25em;
  background-color: #34435E;
  text-align: center;
  line-height: 1.25em;
  color: #ffffff;
  font-size: 1em;
}

/* Odd number paragraphs */
main p:nth-child(odd) {
  border-right: 3px solid;
  padding-left: 0;
  opacity: 0;
}

main p:nth-child(odd).in-view {
  animation: fadeInLeft 1.5s ease forwards;
}

main p:nth-child(odd):before {
  left: 100%;
  margin-left: -20px;
}

/* Even number paragraphs */
main p:nth-child(even) {
  border-left: 3px solid;
  padding-right: 0;
  opacity: 0;
}
main p:nth-child(even).in-view {
  animation: fade_in_right 1.5s ease forwards;
}

main p:nth-child(even):before {
  right: 100%;
  margin-right: -20px;
}

/* First and Last Child */
main p:first-child {
  border-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

main p:last-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

@media(max-width: 450px){
  main p:nth-child(odd) {
    padding-left: 1rem;
  }
}

.business-internet-image{
  width: 60%;
}

.business-internet-image{
  filter: drop-shadow(0px 15px 10px rgba(0, 0, 0, 0.356));
}



.voip-internet-image{
  filter: drop-shadow(0px 15px 10px rgba(0, 0, 0, 0.356));
}

.service-hero-image-network{
  max-width: 50%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.network-internet-image{
  width: 70%;
  opacity: 0;
}

.network-internet-image.in-view{
animation: fade_in_right 1.5s ease forwards;
}

.network-internet-image{
  filter: drop-shadow(0px 15px 10px rgba(0, 0, 0, 0.356));
}

/* -----------------------------------------------------------------VOIP SERVICES----------------------------------------------------------------- */

.voip-sevices-content {
  padding: 2rem;
}

.voip-sevices-content:nth-child(1) {
  padding: 2rem;
  opacity: 0;
}

.voip-sevices-content:nth-child(2) {
  padding: 2rem;
  opacity: 0;
}

.voip-sevices-content:nth-child(3) {
  padding: 2rem;
  opacity: 0;
}

.voip-sevices-content:nth-child(4) {
  padding: 2rem;
  opacity: 0;
}

.voip-sevices-content:nth-child(5) {
  padding: 2rem;
  opacity: 0;
}

.voip-sevices-content:nth-child(1).in-view {
  animation: fade_in_right 1.5s ease forwards;
  animation-delay: .2s;
}

.voip-sevices-content:nth-child(2).in-view {
  animation: fade_in_right 1.5s ease forwards;
  animation-delay: .4s;
}

.voip-sevices-content:nth-child(3).in-view {
  animation: fade_in_right 1.5s ease forwards;
  animation-delay: .6s;
}

.voip-sevices-content:nth-child(4).in-view {
  animation: fade_in_right 1.5s ease forwards;
  animation-delay: .8s;
}

.voip-sevices-content:nth-child(5).in-view {
  animation: fade_in_right 1.5s ease forwards;
  animation-delay: 1s;
}

.service-hero-image-voip{
  max-width: 50%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.voip-internet-image{
  width: 60%;
  opacity: 0;
}

.voip-internet-image.in-view{
  animation: fade_in_right 1.5s ease forwards;
}

.indented-info{
  box-shadow: inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
  padding: 4rem;
  text-align: center;
}

.indented-info h2{
  color: #1e556a;
  font-size: clamp(2rem, 2.5vw, 4rem);
  padding-bottom: 2rem;
  text-shadow: 0 5px 10px #0004;
}

.indented-info p{
 font-size: 1.2rem;
}

.indented-info-blocks{
  display: flex;
  gap: 2rem;
}

.indented-info-blocks p{
  box-shadow:  -3px -3px 7px #ffffff,  3px 3px 5px #ceced1;
  padding: 2rem;
  border-radius: 15px;
  max-width: 50%;
  opacity: 0;
}

.indented-info-blocks p.in-view{
  animation: scaleFromCenter 1s ease forwards;
}



@media (max-width: 900px) {

  .content-service{
    text-shadow: 0 5px 10px #0004;
    padding: 3rem;
    max-width: 100%;
    text-align: center;
  }

  .service-hero{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    padding-top: 8rem;
    justify-content: center;
  }
  
  .service-hero-image{
    width: 100%;
    display: block;
    justify-content: center;
    align-items: center;
  }
  
  .service-hero-image img {
    width: 50%;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0px 15px 10px rgba(0, 0, 0, 0.356));
  }

  .indented-info-blocks{
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  
.indented-info-blocks p{
  box-shadow:  -3px -3px 7px #ffffff,  3px 3px 5px #ceced1;
  padding: 2rem;
  border-radius: 15px;
  max-width: 100%;
}
  
  
  .service-hero-image-business{
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .service-hero-image-voip{
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .voip-internet-image{
    width: 70%;
  }

  .service-hero-image-network{
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .network-internet-image{
    width: 50%;
  }
}

@media (max-width: 678px) {


   .content .title{
      font-size: 50px;
  }

   .content .des{
      font-size: 15px;
  }

  .content-service .des{
    font-size: 1rem;
  }

  .indented-info{
    box-shadow: inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
    padding: 2rem;
    text-align: center;
  }

}

@media (max-width: 450px) {
  .voip-internet-image{
    width: 100%;
  }

  .content-service{
    padding: 1rem;
  }

  .service-hero-image{
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .service-hero-image-business{
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .business-internet-image{
    width: 60%;
  }

  .service-hero-image-network{
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .network-internet-image{
    width: 70%;
  }
  
}




/* --------------------------------------------------------------------NETWORK MANAGEMENT-------------------------------------------------------------------- */

.network-management-feature-container{
  display: flex;
  align-items: center;
}

.network-management-img{
  display: flex;
  justify-content: center;
}

.network-management-img img{
  width: 70%;
  opacity: 0;
}

.network-management-img img.in-view{
  animation: fadeInLeft 1.5s ease forwards;
  animation-delay: .5s;
  filter: drop-shadow(0px 15px 10px rgba(0, 0, 0, 0.356));
}

.network-management-feature-content{
  padding: 3rem;
}

.small-author-heading{
  font-weight: bold;
  letter-spacing: 5px;
  color: #538d6f;
  padding-bottom: 1rem;
  text-transform: uppercase;
  
}

.network-management-feature-content h2{
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  color: #1e556a;
  text-shadow: 10px 10px 12px #b0b0b5;
  opacity: 0;
}

.network-management-feature-content h2.in-view{
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1s;
}

.network-management-feature{
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-block: 2rem;
  opacity: 0;
}

.network-management-feature.in-view{
animation: fade_in_right 1.5s ease forwards;
}


.network-management-feature i{
  font-size: 1.5rem;
  color: #538d6f;
}

.network-managment-service-cta{
  margin-top: 8rem;
   text-align: center; 
   text-shadow: 10px 10px 12px #b0b0b5;
   padding-inline: 1rem;
}

@media(max-width: 900px){
  .network-management-feature-container{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .network-management-img img{
    width: 90%;
    opacity: 0;
  }

  .network-managment-service-cta{
    margin-top: 3rem;
  }
}






/* -----------------------------------------------------------------NETWORK INSTALLATION----------------------------------------------------------------- */

.content-service .title-network-installation{
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: bold;
  line-height: 1.3em;
  color: #000;
  padding-bottom: 1rem;
  animation: fadeInLeft 1.5s ease ;
}

.network-installation-image{
  filter: drop-shadow(0px 15px 10px rgba(0, 0, 0, 0.356));
  width: 50%;
  opacity: 0;
  animation: fade_in_right 1.5s ease forwards;
}

.network-installation-cta-btn button{
  opacity: 0;
}

.network-installation-cta-btn button{
  animation: fadeInUp 1s ease forwards;
}

.network-installation-service-cta h1{
  text-align: center;
  text-shadow: 10px 10px 12px #b0b0b5;
  padding-top: 8rem;
  margin-top: 0;
}

.network-installation-tiles {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 3rem;
}

.network-installation-tile {
  flex: 1 1 18%;  /* Allow tiles to shrink and grow, set a base width of 18% */
  box-shadow: -3px -3px 7px inset #ffffff, 3px 3px 5px inset #ceced1;
  padding: 2rem;
  border-radius: 15px;
  min-width: 250px; 
  opacity: 0;
}

.network-installation-tile.in-view {
  animation: fade_in_right 1.5s ease forwards;
}

/* Animation keyframes */
@keyframes fade_in_right {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* If you want to add different delays for each tile */
.network-installation-tile:nth-child(1).in-view {
  animation-delay: .2s;
}

.network-installation-tile:nth-child(2).in-view {
  animation-delay: .4s;
}

.network-installation-tile:nth-child(3).in-view {
  animation-delay: .6s;
}

.network-installation-tile:nth-child(4).in-view {
  animation-delay: .8s;
}

.network-installation-tile:nth-child(5).in-view {
  animation-delay: 1s;
}


.network-installation-tile h2{
  color: #1e556a;
  text-shadow: 10px 10px 12px #bdbdbd;
  padding-bottom: 2rem;
}



.network-installation-service-ctas h1{
  font-size: clamp(2rem, 3vw, 5rem);
  text-shadow: 10px 10px 12px #bdbdbd;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 2rem;
  padding-inline: 1rem;

}

.network-installation-service-ctas p{
  font-size: 1.2rem;
  text-align: center;
  padding-inline: 10rem;
}



/* Optional: For smaller screens, adjust the width of the tiles */
@media (max-width: 768px) {
  .network-installation-tile {
    flex: 1 1 45%; /* 2 tiles per row */
  }
}

@media (max-width: 480px) {
  .network-installation-tile {
    flex: 1 1 100%; /* 1 tile per row */
  }
}


@media(max-width: 900px){
  .network-installation-image{
    filter: drop-shadow(0px 15px 10px rgba(0, 0, 0, 0.356));
    width: 100%;
    opacity: 0;
    animation: fade_in_right 1.5s ease forwards;
  }

  .network-installation-service-ctas p{
    font-size: 1.2rem;
    text-align: center;
    padding-inline: .5rem;
  }
}

/* -----------------------------------------------------------------SUPPORT SOFTWARE PAGE----------------------------------------------------------------- */

.support-software-page-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.support-software-page-heading{
  text-transform: uppercase;
  color: #000;
  font-size: clamp(2.5rem, 3vw, 4rem);
  text-shadow: 10px 10px 12px #bdbdbd;
}

.support-software-page-description{
  text-transform: uppercase;
  color: #000;
  text-shadow: 10px 10px 12px #bdbdbd;
  margin-bottom: 2rem;
}

.support-software-page-button{
  text-decoration: none;
  color: #000;
  margin-bottom: 2rem;
}

.footer-zip-btn i{
  color: #538d6f;
}

.sup-software-logo-container{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 90%;
  margin-inline: auto;
}

.sup-software-logo{
  box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  border-radius: 10px;
  transition: transform .3s ease-in-out;
  
}

.sup-software-logo:hover{
transform: scale(1.05);
}

.sup-software-logo h2{

  margin-bottom: 20px;
}

.sup-software-logo img{
  width: 80%;
}

@media(max-width: 1000px){
  .sup-software-logo-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 90%;
    margin-inline: auto;
  }
}