:root {
  --primary-color: #1e90ff; 
  --light-blue-main: #26b3ea; /* #87CEEB; Global variable for the main color */
  --blue-main: #4A90E2;  /*#4682B4; Global variable for consistent spacing */
  --background-color: #0a0e27;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
#About:target::before {
    content: "";
    display: block;
    height: 2222px;       /* height of your fixed header */
    margin-top: 200px;  /* negative of the height */
}
body {
  font-family: Tahoma, Geneva, Verdana, sans-serif;
  background: #0a0e27;
  color: #fff;
  width: 100%;
  overflow-x: hidden;
}

/* Navigation */
nav {
    position: sticky;
    z-index: 1000;
    top: 0%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 5%;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(135, 206, 250, 0.2);
}
.scrolled{
    box-shadow: 0 8px 9px rgba(135, 206, 250, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top:6px ;
}

.logo-placeholder {
    width: 100px;
    aspect-ratio: 2.6 / 1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
}
 #logo-image {
    height: 100%;
    object-fit: fill;
}

.brand p {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #87CEEB, #4682B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: none;
}

.nav-links {
    display: none;
    list-style: none;
    float:left;
    flex-wrap: wrap;
    flex-basis: 100%;
}

.nav-links a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  padding: 10px 10px;
  text-align: center;
  border-bottom: 1px solid #ccc;
}
.nav-links li:last-child a{
  border-bottom: 0px;
  margin-bottom:0px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4A90E2;
    transition: width 0.3s ease;

}
#About,#Home,#Services{
  scroll-margin-top: 80px;
}
#Contact{
  scroll-margin-top: 100px;
}
#webback,#softwareback,#cloudback,#internetback,#infrastructureback{
  scroll-margin-top: 180px;
}



.nav-links a:hover::after, .nav-links a:hover{
    width: 100%;
    color: #4A90E2;
}

.hamburger{
  display: flex;
  flex-wrap: wrap;
  width:35px;
  background-color: transparent;
  border: none;
}

.hamburger .bars1,.hamburger .bars2,.hamburger .bars3{
  flex-basis: 100%;
  width: 100%;
  height: 5px;
  background-color: #fff;
  background: linear-gradient(135deg, #4682B4, #87CEEB);
  margin:3px;
}

.change .bars1 {
  transform: translate(0, 11px) rotate(-45deg);
    transition: width 1.3s ease-in-out;
}

.change .bars2 {opacity: 0;}

.change .bars3 {
  transform: translate(0, -11px) rotate(45deg);
    transition: width 1.3s ease-in-out;
}


@media screen and (min-width: 768px) {
  .logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    float: left;
    padding-top: 20px;
  }
  .brand p {
    font-size: 2.3rem;
  }
  .nav-links a {
    font-size: 1.7rem;
    font-weight: 500;
  }
}

@media screen and (min-width: 1024px) {
    .logo-placeholder {
    width: 180px;
    padding-top:10px ;
  }
  .nav-links {
    flex-basis: auto;
  }

  .logo-container {
    cursor: pointer;
    padding: 10px 0;
  }
  .logo-container:hover {
    transform: scale(1.1);
  }
  .brand p {
    display: flex;
  }
  .nav-links a {
    font-size: 1.7rem;
    font-weight: 500;
  }
  .nav-links {
      display: flex;
      gap: 0.6rem;
      list-style: none;
      float:right;
  }

  .nav-links a {
    border-bottom: 0px;
    border-top: 0px;
     font-size: 1.7em;
    display: block;
    padding: 10px 10px;
    text-align: center;
  }
  .hamburger{
    display: none;
  }

}
@media screen and (min-width: 1280px) {
  
}

/******************** Hero Section***************************/
.particle_field {
  position: fixed;
  height: 100%;
  width: 100%;
  max-width: 100vw;
  top: 0;
  z-index: -1;
}
.particle {
  position: absolute;
  background: #87CEEB;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 8s infinite;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100; 
}
@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-100px) translateX(50px); }
    50% { transform: translateY(-50px) translateX(-50px); }
    75% { transform: translateY(-150px) translateX(100px); }
}

.hero {
  margin: 20px 0px;
  align-items: center;
  justify-content:center;
  padding: 0 5%;
  width: 100vw;
  max-width: 100%;
}
.hero-content {
  text-align: center;
  width: 100%;
  padding-bottom: 20px;;
  overflow: hidden;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero {
  padding: 0 5%;
  margin-bottom: 20px;
}
.hero .heading{
  font-size: 4.5rem;
  line-height: 150%;
  background: linear-gradient(135deg, #87CEEB, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1.7s ease;
}

.hero p.motto {
  font-size: 1.4rem;
  color: #87CEEB;
  margin: 2rem 0;
  font-style: italic;
  width: 100%;
  animation: fadeInUp 2s ease;
}

.hero h1{
  font-size: 1.1rem;
  max-width: 1200px;
  margin: 0 auto 10px;
  line-height: 1.8;
  color: #ccc;
  animation: fadeInUp 2.5s ease;
}

.cta-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, #87CEEB, #4682B4);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(135, 206, 250, 0.3),0 -10px 30px rgba(135, 206, 250, 0.3);
  margin: 20px auto;
  animation: fadeInUp 2.9s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(135, 206, 250, 0.5);
}

@media screen and (min-width: 768px) {
  .hero{
    margin: 0px 0px;
  }
  .hero-content {
    animation: fadeInUp 1.8s ease;
    margin-bottom: 10px;
  }
  .hero .heading {
      font-size: 6.5rem;
      padding-top: 0rem;
  }

  .hero p.motto,.hero-service p.motto {
      font-size: 2.5rem;
      margin: 0.5rem auto;
      width: 100%;
  }

  h1 {
    font-size: 1.7rem;
    margin: 0 auto 1rem;
    line-height: 1.8;
  }

  .cta-button {
      display: inline-block;
      padding: 1.1rem 3rem;
      border-radius: 50px;
      box-shadow: 0 13px 30px rgba(135, 206, 250, 0.3);
      animation: fade-in .3s ease-out;
      font-size: 1.7rem;
  }

}
@media screen and (min-width: 1024px) {
  .hero-content {
      animation: fadeInUp 1.8s ease;
      margin-bottom: 30px;
  }
  .hero .heading {
      font-size: 9.8rem;
      line-height: 1.4em;
  }

  .hero p.motto,.hero-service p.motto {
      font-size: 3.3rem;
      color: #87CEEB;
      margin: 0 auto 2rem;
      line-height: 1.5em;
  }

  h1 {
      font-size: 2rem;
      margin: 0 auto 3rem;
      line-height: 1.3;
      color: #ccc;
  }

  .cta-button {
      display: inline-block;
      padding: 1rem 2.6rem;
      box-shadow: 0 13px 30px rgba(135, 206, 250, 0.3);
      animation: fade-in .3s ease-out;
      font-size: 1.9rem;
  }
}
@media screen and (min-width: 1280px) {
  .hero {
    height: 80vh;
  }
  .hero-content {
    animation: fadeInUp 1.8s ease;
    margin-bottom: 30px;
    min-height: 100%;
    align-items: center;
  }
  
  .hero .heading {
      font-size: 14.8rem;
      line-height: 1.4em;
  }

  .hero p.motto,.hero-service p.motto {
    font-size: 4.5rem;
    margin-bottom: 2rem;
  }
  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.8;
  }
}
@media screen and (min-width: 1920px) {
  .hero-content {
      margin-bottom: 30px;
  }

  .hero p.motto,.hero-service p.motto {
      font-size: 7.0rem;
      margin: 1rem auto;
      padding: 0 0;
      text-align: center;
      line-height: 1.2em;
  }
  h1 {
    font-size: 5.3rem;
    margin: 1rem 21rem;
    margin-bottom: 2rem;
    line-height: 1.4;
  }

  .cta-button {
    padding: 1.7rem 5rem;
    box-shadow: 0 23px 50px rgba(135, 206, 250, 0.3);
    font-size: 2.9rem;
  }
}
@media screen and (min-width: 2560px) {
  .hero .heading {
    font-size: 13.2rem;
    padding-top: 0rem;
    line-height: 1.5em;
  }

  .hero p.motto,.hero-service p.motto {
    font-size: 7.0rem;
    line-height: 1.2em;
  }
  .hero h1 {
    font-size: 4.3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    line-height: 1.5em;
  }

  .cta-button {
      padding: 1.1rem 4.6rem;
      box-shadow: 0 30px 50px rgba(135, 206, 250, 0.3);
  }
}
/********************Service section************************/
.services {
  padding: 1rem 5%;
  width: 100%;
}
.text-box{
  max-width: 100%;
}
.section-title {
  text-align: center;
  font-size: 3.5rem;
  margin: 0.5rem 0;
  background: linear-gradient(135deg, #87CEEB, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  overflow: hidden;
}
.section-subtitle {
  text-align: center;
  color: #ccc;
  font-size: 1.3rem;
}
.container-service{
  display: flex;
  flex-flow: wrap;
  justify-content: space-evenly;
  align-items: center;
  margin: 20px 0; 
  gap: 20px;
}
.card-container,.services-container{
  overflow: hidden;
  width: 325px;
  aspect-ratio: 1 / 1.42;
  align-self: center;
  margin: 0;
  max-height: (325px * 1.42);
  overflow: hidden;
  clip-path: inset(0 0 0 0); 
}

.services-container,.service-card{
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  aspect-ratio: 1 / 1.4;
  border-radius: 20px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.8s;
  width: 325px;
}
.card-face-inner{
  transform-style: flat;
}

.service-card{
  overflow: visible;
  background: transparent;
}

.services-container::before,.card-face-inner::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top:-20%;
  width: 120px;
  height: 620px;
  background: linear-gradient(90deg,transparent 0% ,var(--blue-main) 20%,var(--blue-main) 80%,transparent 100%);
  animation: rotate 3.0s linear infinite;
}
/* The inner content area */
.services-container::after,.card-face-inner::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--background-color);
  backdrop-filter: blur(10px);
  border-radius: 17px;
}
.card-face{
  overflow: hidden;
}
.card-back{
  transform: rotateY(180deg);
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.card-face,.card-info {
  position:absolute;
  top: 3px;
  left:3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  grid-auto-flow: column;
  justify-content: center;
  gap: 1em;
  align-items: center;
  text-align: center;
  z-index: 1;
  backface-visibility: hidden;
  padding:0% 5%;
}

.card-face{
  border: 3px solid rgba(0, 0, 0, 0.6);
}
.service-icon {
  font-size: 6rem;
  margin-bottom: 0rem;
  display: block;
}
.center{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10px;
  flex-grow: 1;
}
p.center{
  font-size: 2.9em;
  opacity: 0.9;
  color: #ccc;
}

p.title{
  background: linear-gradient(0deg, #87CEEB, #4A90E2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.9em;
  margin: 20px auto;
  margin-bottom: 10px;
  font-size: 2.9rem;
  opacity: 0.9;
  line-height: 1;
}
p.service-description{
  font-size: 1.4rem;
  color: #ccc;
  margin:0 auto;
}

p.service-card-body{
  font-size: 1.1rem;
  color: white;
  margin:0 auto;
}
a.service-links{
  color: var(--light-blue-main);
}
.animated-button {
  background-image: radial-gradient(135deg, #87CEEB, #fff);
  color: #4A90E2; 
  border: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 20px #b5cef6;/*linear-gradient(135deg, #f5f7fa 0%,  100%);*/
  font-weight: 600;
  letter-spacing: 1px;
  max-width: 14rem;
  margin: 0 auto;
}
button.animated-button2 {
  background-image: linear-gradient(135deg, #87CEEB, #fff);
  color: #4A90E2; 
  border: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 20px #b5cef6;/*linear-gradient(135deg, #f5f7fa 0%,  100%);*/
  font-weight: 600;
  letter-spacing: 1px;
  max-width: 14rem;
  margin: 0 auto;
}
 /* Hide the checkbox */
.card-toggle {
  display: none;
}

@media screen and (max-width: 767px){
  .card-container.active .service-card{
    transform: rotateY(180deg);
  }
  .card-container .service-card{
    transition: transform 0.8s;
  }
  .card-front .animated-button2::after { content: 'Learn More'; }
  .card-back .animated-button2::after { content: 'Go Back'; }
  
  .desktop-content-only{
   display: none;
  }
}
@media screen and (min-width: 768px){

  .card-container.active .animated-button2::after { content: 'Close'; }
  .card-container:not(.active) .animated-button2::after { content: 'Learn More'; }

  .card-container.active {
    /* When clicked, take up 100% width and grow in height */
    flex: calc(66.666% - 10px);
    max-width: 720px;
    height: calc(325px * 1.42);
    max-height: calc(325px * 1.42);
    overflow: hidden;
  }
  .card-container{
    overflow: hidden;
    height: calc(325px * 1.42);
    max-height: calc(325px * 1.42);
  }
  .card-container:not(.active) .desktop-content-only,.card-container:not(.active) .desktop-content-only p{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 720px;
    height: fit-content;
  }
  .card-container.active .desktop-content-only{
    display: block;
    opacity: 1;
  }
  .card-container.active .desktop-content-only p {
    font-size: 2em;
    opacity: 0.9;
    color: #ccc;
  }
  .card-container.active .service-card{
    width:100%;
    height: max-content; 
    max-height: calc(325px * 1.42);
  }
  .card-container.active .hide-on-desktop{ 
    display: none;
  }
  .card-container.active .card-face{
    padding-top: 10px;
    grid-template-rows: 3fr 1fr;
  }
  
}

.animated-button2:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(255, 75, 43, 0.6);
  background: linear-gradient(45deg,#f5f7fa 0%,  100%);
}

.animated-button2:active {
  transform: translateY(0);
}

.animated-button2:hover::before {
  left: 100%;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(43, 209, 255, 0.7);
  }
  70% {
      box-shadow: 0 0 0 15px rgba(255, 75, 43, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(255, 75, 43, 0);
  }
} 

@media screen and (min-width: 768px) {
  .services {
    padding: 6rem 5%;
  }
  .section-title {
    text-align: center;
    font-size: 5.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #87CEEB, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .section-subtitle {
    text-align: center;
    color: #ccc;
    margin:1rem 5%;
    font-size: 1.7rem;
  }
  .container-service,.service-grid{
    display: flex;
    flex-flow: wrap;
    justify-content: space-evenly;
    align-items: center;
    overflow: auto;
    gap: 20px;
    overflow: auto;
    margin: 0;
  }
  .services-container,.card-container {
    aspect-ratio: 1/1.42;
    width: 325px;
    align-self: center;
    margin: 0;
  }

  .overlay h3 {
    margin-bottom: 1.2rem;
    font-size: 2.5rem;
  }


}

@media screen and (min-width: 1024px) {
  .services {
  padding: 5rem 5%;
  }

  .section-title {
    font-size: 6.5rem;
  }
  .section-subtitle {
    margin: 0rem 0 2.8rem;
    font-size: 2.7rem;
  }
  .service-grid{
    display: flex;
    flex-flow: wrap;
    gap: 1rem;
    margin-top: 5px;
  }

  .services-container {
    margin: 0rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .image-box {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  }

  .animated-button{
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
  }

}
@media screen and (min-width: 1280px) {
  .services {
  padding: 6rem 5% 0;
  }

  .section-title {
    text-align: center;
    font-size: 6.5rem;
    margin-bottom: 1rem;
  }
  .section-subtitle {
    margin:3rem 5%;
    font-size: 2.3rem;
  }

}
/*****************************-- About Us --******************************/

.about{
  padding: 0px 5%;
}

.gradient-text{
  background-image: linear-gradient(to right,hsl(200 95% 55%) , hsl(200 95% 65%));
  background-clip: text;
  color: transparent;
  line-height: 1.9em;
}
.container-about-us{
  font-size: 2.6rem;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(1,minmax(0,1fr));
  gap: 3rem;
}

.inner-container-left{
  animation: slide-in-left .6s ease-out;
}
.inner-container-right{
  animation: slide-in-right .6s ease-out;
  position: relative;
  border-radius: 2rem;
  border: 1px solid rgba(135, 206, 250, 0.2);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  margin-bottom: 25px;
}


.text{
  color: white;
  line-height: 1.625;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}


.block-write{
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  animation: fade-in .6s ease-out;
  animation-delay: 0s;
}

.box{
  background-color: rgba(255, 255, 255, 0.05);;
  padding: 1.5rem;
  border-radius: 1.3rem;
  border-color: hsl(var(--border));
  margin: 3rem 30px;
}
.box .strong_text{
  text-align: center;
}
.strong_text{
  color: hsl(200 95% 55%);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2rem;
  margin-bottom: .5rem;
}

@media screen and (min-width: 768px) {
  .container-about-us{
  font-size: 1.3rem;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 3rem;
  padding: 5%px 5%;
  }

  .inner-container-left{
    animation: slide-in-left .6s ease-out;
  }
  .inner-container-right{
    animation: slide-in-right .6s ease-out;
    position: relative;
    border-radius: 2rem;
    border: 1px solid rgba(135, 206, 250, 0.2);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    margin-bottom: 25px;
  }
  .gradient-text{
    background-image: linear-gradient(to right,hsl(200 95% 55%) , hsl(200 95% 65%));
    background-clip: text;
    color: transparent;
  }

  .text{
    color: white;
    line-height: 1.625;
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }


  .block-write{
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    animation: fade-in .6s ease-out;
    animation-delay: 0s;
  }

  .box{
    background-color: rgba(255, 255, 255, 0.05);;
    padding: 1.5rem;
    border-radius: 1.3rem;
    border-color: hsl(var(--border));
    margin: 3rem 30px;
  }
  .strong_text{
    color: hsl(200 95% 55%);
    font-weight: 700;
    font-size: 1.9rem;
    line-height: 2rem;
    margin-bottom: .5rem;
  }
}
@media screen and (min-width: 1024px) {
  .text{
    line-height: 1.625;
    font-size: 1.725rem;
    margin-bottom: 1.8rem;
  }
  .strong_text{
    font-size: 2.4rem; 
  }
}


/*-- Contact us --*/
.contact{
  padding: 0% 5%;
}
.container-contact-us{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  margin: 20px auto;
}

.contact-info {
  width: 80vw ;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0px auto;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 1rem;
  border-radius: 20px;
  border: 2px solid rgba(135, 206, 250, 0.2);
  animation: slide-in-left .6s ease-out;
}


.contact-item {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 15px;
  margin: 5px 0px;;
}

.contact-form {
  width: 90vw ;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem 1rem;
  border-radius: 20px;
  border: 2px solid rgba(135, 206, 250, 0.2);
  animation: slide-in-right .6s ease-out;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
  color: #87CEEB;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(135, 206, 250, 0.3);
  border-radius: 10px;
  color: white;
  transition: all 0.3s ease;
  
}
::placeholder {
  font-size: 1.4rem;
}
.error { 
  color: red; 
  font-size: 14px; 
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #87CEEB;
  box-shadow: 0 0 20px rgba(135, 206, 250, 0.3);
}
.invalid-input{
  box-shadow: 0 0 20px rgba(234, 25, 25, 0.3);
}
.valid-input{
  border: 1px solid rgba(135, 206, 250, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #87CEEB, #4682B4);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(135, 206, 250, 0.5);
}

.contact-heading{
  color: hsl(200 95% 55%);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 2rem;
  margin-bottom: .5rem;
  text-align: center;
}
p.contact_text {
  font-size: 1.1rem;
}

.contact-icon {
  font-size: 1.4rem;
  color: #4A90E2;
  margin-top: 5px;
  font-weight:900;
}
.animate-pulse {
  animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite
}
@media screen and (min-width: 768px) {
  .contact{
    margin: 30px 0%;
  }
  .container-contact-us{
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .contact-info{
    max-width: 720px;
    width: 500px;
    padding: 2rem 3rem;
    margin: 0px;
    gap:20px;
  }
  .contact-form {
    width: 500px;
    max-width: 800px;
    padding: 3rem;
  }
  
  .contact-heading{
    font-size: 2.8rem;
    text-align: center;
    padding-bottom: 0px;
    margin: 0 auto;
  }
  p.contact_text {
    font-size: 1.4rem;
  }

  .contact-icon {
    font-size: 1.9rem;
    margin-top: 10px;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    font-size: 1.8rem;
  }

  .submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.9rem;
    cursor: pointer;
  }

  button.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(135, 206, 250, 0.5);
  }
  
}
@media screen and (min-width: 1024px) {
  .container-contact-us{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  flex-direction: row;
  }
  .contact-info{
  padding: 2rem 5%;
  width: 550px;
  margin: 0;
  min-width: fit-content;
  border-radius: 20px;
  border: 1px solid rgba(135, 206, 250, 0.2);
  animation: slide-in-left .6s ease-out;
  }

  .contact-form {
    padding: 2rem 5%;
    min-width: fit-content;
    width: 550px;
    margin: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(135, 206, 250, 0.2);
    animation: slide-in-right .6s ease-out;
  }
  
  p.contact_text {
    font-size: 1.8rem;
  }
  .form-group label {
  font-size: 2.4rem;
  }
}
/*-- Footer --*/
footer{
  width:100vw;
  align-items: center;
}
.footer-container {
    background: rgba(10, 14, 39, 0.95);
    margin: 0 auto;
    padding: 0px 5%;
    border-top: 3px solid rgba(135, 206, 250, 0.2);
}

.footer-content {
    gap: 20px;
    margin: 20px auto;
    /*
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-content: center;
    align-items: center;*/
}
div.footer-content div:first-child{
  margin: 0px auto;
  width:80%;
}
.footer-content div:nth-child(2),.footer-content div:nth-child(3){
  display: none;
}
.footer-section img{
    width: 180px;
    aspect-ratio: 2.4 / 1;
    align-items: center;
}

.footerbrand {
    margin-bottom: 20px;
    color: #4A90E2;
    font-size: 1.8rem;
}
p.footer-motto{
    font-size: 1.1rem;
    color: white;
}
.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a:hover {
    color: #4A90E2;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 20px;
}

.footer-bottom p{
  text-align: center;
  color: #ccc;
  font-size: 1.5rem;
  margin-bottom: 10px;
}


@keyframes slide-in-left {
  0% {
    opacity:0;
    transform:translate(-30px)
  }
  to {
    opacity:1;
    transform:translate(0)
  }
}

@keyframes around_the_block {
  0% {
    border-top: 3px solid #4A90E2;
    border-right: 0px solid #4A90E2;
    box-shadow: 0px -5px 3px rgba(135, 206, 250, 0.3);
    transition: width 0.3s ease;
  }
  25% {
    border-left: 3px solid #4A90E2;
    border-top: 0px solid #4A90E2;
    box-shadow: 5px 0px 3px rgba(135, 206, 250, 0.3);
    transition: width 0.3s ease;
  }
  
  50% {
    border-left: 3px solid #4A90E2;
    border-bottom: 0px solid #4A90E2;
    box-shadow: 0px 5px 3px rgba(135, 206, 250, 0.3);
    transition: width 0.3s ease;
  }
  
  100% {
    border-left: 3px solid #4A90E2;
    border-bottom: 0px solid #4A90E2;
    box-shadow: -5px -0px 3px rgba(135, 206, 250, 0.3);
    transition: width 0.3s ease;
  }
}
.animate-slide-in-left {
  animation:slide-in-left 1.6s ease-out
}
@keyframes slide-in-right {
  0% {
    opacity:0;
    transform:translate(30px);
  }
  30%,70%{
    opacity:1;
    transform:translate(0);
  }
  to {
    opacity:0;
    transform:translate(-30px)
  }
}
.animate-slide-in-right {
  animation: slide-in-right ease-out;
  animation-timeline: view();
  animation-range: entry 0% exit 100%;
}
@media screen and (max-width: 767px) {
.footer-center{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
}
@media screen and (min-width: 768px) {
  div.footer-content div:first-child {
    margin: 0px;
    width: 100%;
  }
  .footer-content {
    gap: 20px;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content div:nth-child(2),.footer-content div:nth-child(3){
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
 
  }
  .footerbrand {
    color: #4A90E2;
    font-size: 1.8rem;
    margin: 0 0 20px 20px;
  }
  p.footer-motto{
    font-size: 1.2rem;
    color: white;
  }
  
  .footer-section h5 {
    color: #ccc;
    line-height: 1.2rem;
    margin: 10px 0 20px ;
    font-size: 1.8rem;
    text-align: center;
  }

  .footer-section ul li {
    margin-bottom: 5px;
    text-align: center;
    font-size: 1.4rem;
  }

  .footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-section ul li a:hover {
      color: #4A90E2;
  }
  .footer-container .line{
    background: rgba(135, 206, 250, 0.2);
    width:100vw;
    height: 3px;
    margin-left: -5.5%;
  }
  .footer-bottom {
    border-top: 0px;
    padding: 20px;
  }

  .footer-bottom p{
    text-align: center;
    color: #ccc;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
    

}
@media screen and (min-width: 1024px) {

  .footerbrand {
    margin-bottom: 20px;
    color: #4A90E2;
    font-size: 1.9rem;
  }
  
  p.footer-motto{
    font-size: 1.5rem;
  }
  .footer-section h5{
    font-size: 2.2rem;
  } 
  .footer-section ul li {
    margin-bottom: 10px;
  }

}
@media screen and (min-width: 1440px) {


  .footerbrand {
    font-size: 2.1rem;
  }
  
  p.footer-motto{
    font-size: 1.4rem;
  }
  h5.left-indentation {
    padding-left: 30px;
  }

  .footer-section ul li {
    margin-bottom: 10px;
  }
  .footer-bottom {
    border-top: 0px;
    padding: 20px;
  }

  .footer-bottom p{
    text-align: center;
    color: #ccc;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

}


@media screen and (min-width: 2560px) {

  .footer-content {
    padding: 20px 5%;
  }

  .footerbrand {
    margin-bottom: 20px;
    font-size: 3.2rem;
  }
  
  p.footer-motto{
    font-size: 2.3rem;
  }
  .footer-section img{
      width: 270px;
  }
  
  .footer-bottom p{
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .footer-section h5 {
    font-size: 2.9rem;
    margin: 10px 0 30px;
  }

  .footer-section ul li {
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.9rem;
  }

}


/***********************************Animation******************************************/
@media screen and (max-width:767px){
  .fadeUpOnScroll{
    animation: fadeOutUp linear;
    animation-timeline: view();
    animation-range: entry 10% exit 90%;
  }

.section-title.fadeInOutOnScrollSlow, 
.section-subtitle.fadeInOutOnScrollSlow,
.fadeInOutOnScrollSlow{
  animation: slide-in-out-slow ease-in-out ;
  animation-timeline: view();
  animation-range: entry 0% exit 100%; 
}

.fadeInOutOnScroll {
  animation: slide-in-out linear;
  animation-timeline: view();
  animation-range: entry 0% exit 80%; 

}

.fadeIn{
  animation: appear linear forwards;
  animation-timeline: view();
  animation-range: entry 0% exit 100%;
}

.particle_field{
  overflow: hidden;
}

/*-- Expansion card styles --*/
.modal-field{
  position: fixed;
  top: 61px;
  left: 0;
  width: 100%;
  height: calc(100% - 61px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  margin: 0 auto;
}
.modal {
  width: 100%;
  height: 90%;
  max-width: 600px;
  max-height: 800px;
  padding: 1rem 5%;
  z-index: 3;
  opacity: 1;
  pointer-events: none;
  padding: 0rem 5%;
  border-radius: 20px;
  border: 1px solid;
  width: 70%;
  background-color: white;
  border-color: #87CEEB;
  box-shadow: 0 20px 60px rgba(135, 206, 250, 0.3);
}

.modal.active{
  opacity: 1 !important;
  pointer-events: all;
}

.modal-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.modal-content {
  padding: 0px px;
  max-height: 300px;
  margin-bottom: 20px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

p.modal-title {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: #6b7280;
  margin: 5px auto;
  text-align: center;
}

.modal-description {
  color: #6b7280;
}

.close-button {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b7280;
  position: relative;
  top: 15px;
  right: 0px;
}

.modal-body {
  color: #4b5563;
  line-height: 1.6;
  overflow-y: scroll;
}


@keyframes appear {
   0% {
      opacity: 0;
      transform: translateY(20px) scale(0.4);
    }

    /* Fade + scale in */
    20% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /* Hold */
    70% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /* Exit */
    100% {
      opacity: 0;
      transform: translateY(-60px) scale(0.6);
    }
}
@keyframes slide-in-out {
  /* Entry: Slide in from the left */
  0% {
    opacity: 0;
    transform: translateX(120px) rotateY(-30deg);
  }
  /* Middle: Fully visible and centered */
  20%, 80% {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
  }
  /* Exit: Slide out to the right */
  100% {
    opacity: 0;
    transform: translateX(-150px) rotateY(30deg);
  }
}
@keyframes slide-in-out-slow {
  /* Entry: Slide in from the left */
  0% {
    opacity: 0;
    transform: translateX(-220vw) rotateY(-20deg);
  }
  /* Middle: Fully visible and centered */
  30%, 80% {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
  }
  /* Exit: Slide out to the right */
  100% {
    opacity: 0;
    transform: translateX(150px) rotateY(20deg);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 0;
    transform: rotateY(-20deg) scale(0.4);
  }
  /* Middle: Fully visible and centered */
  30%, 70% {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
  }
  /* Exit: Slide out to the right */
  100% {
    opacity: 0;
    transform:  rotateY(20deg) scale(0.5);
  }
}
}
@media screen and (min-width:768px){
  .fadeUpOnScroll{
    animation: fadeOutUp linear;
    animation-timeline: view();
    animation-range: entry 10% exit 100%;
  }
  .fadeInOutOnScrollSlow{
    animation: slide-in-out-slow ease-in-out ;
    animation-timeline: view();
    animation-range: entry 0% exit 100%; 
  }

  .fadeInOutOnScrollMediumscreen {
    animation: slide-in-out linear;
    animation-timeline: view();
    animation-range: entry 0% exit 100%; 
  }
  
  .fadeIn2{
    animation: appear linear forwards;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  .fadeInMediumscreen{
    animation: appear2 linear forwards;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  @keyframes appear {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.4);
      }

      /* Fade + scale in */
      20%,80% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }

      /* Exit */
      100% {
        opacity: 0;
        transform: translateY(-60px) scale(0.6);
      }
  }
  @keyframes appear2 {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.4);
      }

      /* Fade + scale in */
      14%,80% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }

      /* Exit */
      100% {
        opacity: 0;
        transform: translateY(-60px) scale(0.6);
      }
  }
  @keyframes slide-in-out {
    /* Entry: Slide in from the left */
    0% {
      opacity: 0;
      transform: translateX(120px) rotateY(-30deg);
    }
    /* Middle: Fully visible and centered */
    20%, 80% {
      opacity: 1;
      transform: translateX(0) rotateY(0deg);
    }
    /* Exit: Slide out to the right */
    100% {
      opacity: 0;
      transform: translateX(-150px) rotateY(30deg);
    }
  }
  @keyframes slide-in-out-slow {
    /* Entry: Slide in from the left */
    0% {
      opacity: 0;
      transform: translateX(-220px) rotateY(-30deg);
    }
    /* Middle: Fully visible and centered */
    30%, 80% {
      opacity: 1;
      transform: translateX(0) rotateY(0deg);
    }
    /* Exit: Slide out to the right */
    100% {
      opacity: 0;
      transform: translateX(150px) rotateY(30deg);
    }
  }
  @keyframes fadeOutUp {
    0% {
      opacity: 0;
      transform: rotateY(-20deg) scale(0.4);
    }
    /* Middle: Fully visible and centered */
    30%, 85% {
      opacity: 1;
      transform: translateX(0) rotateY(0deg);
    }
    /* Exit: Slide out to the right */
    100% {
      opacity: 0;
      transform:  rotateY(20deg) scale(0.5);
    }
  }
}

