@import "https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap";

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

.container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

p {
  color: black;
  font-size: 1.4rem;
  margin-top: 5px;
  line-height: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05rem;
}

.cta {
  display: inline-block;
  padding: 10px 30px;
  color: white;
  background-color: transparent;
  border: 3px solid #002f6c;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-top: 30px;
  transition: 0.3s ease;
  transition-property: background-color, color;
}

.cta:hover {
  color: white;
  background-color: #002f6c;
}

.logo {
  height: 55px;
}

@media only screen and (min-width: 768px) {
  .cta {
    font-size: 2.5rem;
    padding: 20px 60px;
  }
}

/* Header section */

#header {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: auto;
}

#header .header {
  min-height: 8vh;
  background-color: rgba(57, 64, 66, 0.429);
  transition: 0.1s ease background-color;
  backdrop-filter: blur(6px);
}

#header .nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-width: 1300px;
  padding: 0 10px;
}

#header .nav-list ul {
  list-style: none;
  position: absolute;
  background-color: rgb(31, 30, 30);
  width: 100vw;
  height: 100vh;
  left: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  overflow-x: hidden;
  transition: 0.5s ease left;
}

#header .nav-list ul.active {
  left: 0%;
}

#header .nav-list ul a {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  padding: 20px;
  display: block;
}

#header .nav-list ul a::after {
  content: attr(data-after);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: rgba(243, 243, 243, 0.221);
  font-size: 13rem;
  letter-spacing: 50px;
  z-index: -1;
  transition: 0.3s ease letter-spacing;
}

#header .nav-list ul li:hover a::after {
  transform: translate(-50%, -50%) scale(1);
  letter-spacing: initial;
}

#header .nav-list ul li:hover a {
  color: #002f6c;
}

#header .hamburger {
  height: 60px;
  width: 60px;
  display: inline-block;
  border: 3px solid white;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
  transform: scale(0.8);
  margin-right: 20px;
}

#header .hamburger:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 3px solid white;
  animation: hamburger_puls 1s ease infinite;
}

#header .hamburger .bar {
  height: 2px;
  width: 30px;
  position: relative;
  background-color: white;
  z-index: -1;
}

#header .hamburger .bar::after,
#header .hamburger .bar::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  background-color: white;
  transition: 0.3s ease;
  transition-property: top, bottom;
}

#header .hamburger .bar::after {
  top: 8px;
}

#header .hamburger .bar::before {
  bottom: 8px;
}

#header .hamburger.active .bar::before {
  bottom: 0;
}

#header .hamburger.active .bar::after {
  top: 0;
}

@keyframes hamburger_puls {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

@keyframes text_reveal_box {
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}

@keyframes text_reveal {
  100% {
    color: rgb(255, 255, 255);
  }
}

@keyframes text_reveal_name {
  100% {
    color: #5aa1ff;
    font-weight: 500;
  }
}

@media only screen and (min-width: 1200px) {
  #header .hamburger {
    display: none;
  }
  #header .nav-list ul {
    position: initial;
    display: block;
    height: auto;
    width: fit-content;
    background-color: transparent;
  }
  #header .nav-list ul li {
    display: inline-block;
  }
  #header .nav-list ul li a {
    font-size: 1.8rem;
  }
  #header .nav-list ul a:after {
    display: none;
  }
}

/* End Header section */

/* ------------------------------------Home Page Starts--------------------------- */

/* Hero Section */

#hero {
  background-image: url(../images/hero\ img.png);
  background-size: cover;
  background-position: top center;
  position: relative;
  z-index: 1;
  margin-top: 60px;
  height: 95vh;
}

#hero::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(0, 0, 0);
  opacity: 0.7;
  z-index: -1;
}

#hero .hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  justify-content: flex-start;
}

#hero h1 {
  display: block;
  width: fit-content;
  font-size: 3.5rem;
  position: relative;
  color: transparent;
  animation: text_reveal 0.5s ease forwards;
  animation-delay: 1s;
}

#hero h1:nth-child(1) {
  animation-delay: 1s;
}

#hero h1:nth-child(2) {
  animation-delay: 2s;
}

#hero h1:nth-child(3) {
  animation: text_reveal_name 0.5s ease forwards;
  animation-delay: 3s;
}

#hero h1 span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #002f6c;
  animation: text_reveal_box 1s ease;
  animation-delay: 0.5s;
}

#hero h1:nth-child(1) span {
  animation-delay: 0.5s;
}

#hero h1:nth-child(2) span {
  animation-delay: 1.5s;
}

#hero h1:nth-child(3) span {
  animation-delay: 2.5s;
}

@media (max-width: 767px) {
  #hero {
    height: auto;
    padding: 3rem 1rem;
  }

  #hero .hero {
    padding: 0 1rem;
  }

  #hero h1 {
    font-size: 3rem;
    line-height: 1.3;
  }

}

/* End Hero Section */

/* About Section */

#about {
  margin-top: 50px;
}

#about .about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

#about .col-left {
  width: 300px;
  height: 360px;
  margin-top: 5%;
  margin-bottom: 30px;
}

.section-title {
  font-size: 4rem;
  font-weight: 300;
  color: black;
  margin-bottom: 10px;
  margin-left: 50px;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  text-align: center;
}

.section-title span {
  color: #002f6c;
  font-weight: bold;
}

.scroll-left,
.scroll-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease;
}

.scroll-left {
  transform: translateX(-100px);
}

.scroll-animate {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

#about .col-right {
  width: 100%;
}

#about .col-right h2 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
}

#about .col-right p {
  margin-bottom: 20px;
  margin-left: 50px;
  margin-right: 50px;
}

#about .col-right .cta {
  color: black;
  margin-bottom: 50px;
  margin-left: 50px;
  padding: 10px 20px;
  font-size: 2rem;
}

#about .col-left .about-img {
  height: 100%;
  width: 100%;
  position: relative;
  border: 10px solid white;
}

#about .col-left .about-img::after {
  content: "";
  position: absolute;
  left: -33px;
  top: 30px;
  height: 98%;
  width: 98%;
  border: 7px solid #002f6c;
  z-index: -1;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

.about-img:hover img {
  transform: scale(1.1);
}

@media only screen and (min-width: 768px) {
  h1.section-title {
    font-size: 6rem;
  }
  #about .about {
    flex-direction: row;
  }
  #about .col-left {
    width: 600px;
    height: 400px;
    padding-left: 50px;
    margin-top: -200px;
  }
  #about .about .col-left .about-img::after {
    left: -45px;
    top: 34px;
    height: 98%;
    width: 98%;
    border: 10px solid #002f6c;
  }
  #about .col-right {
    text-align: left;
    padding: 30px;
  }
  #about .col-right h1 {
    text-align: left;
  }
}

@media (max-width: 767px) {
  #about .about {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
  }

  #about .col-left {
    width: 90%;
    height: auto;
    margin-bottom: 2rem;
  }

  .about-img{
    margin-left: 1rem;
  }

  #about .col-right {
    padding: 0;
    text-align: center;
  }

  #about .col-right p {
    margin: 2rem 2rem;
  }

  #about .col-right .cta {
    margin: 1rem auto;
    font-size: 1.2rem;
    padding: 0.7rem 1.5rem;
  }

  .section-title {
    font-size: 3rem;
    margin-left: 0;
    text-align: center;
  }
}

/* End About Section */

/* Vision, Mission & Message */

.vision-director-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.vision-message-wrapper {
  max-width: 1250px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.vision-box,
.mission-box {
  background: #fdfefe;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 0px 30px #d3ecf8;
  margin-bottom: 4rem;
}

.vision-layout,
.mission-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.custom-heading {
  font-size: 4rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  text-align: center;
}

.custom-heading span {
  color: #002f6c;
  font-weight: bold;
}

.vision-left,
.vision-right,
.mission-left,
.mission-right {
  flex: 1 1 45%;
}

.vision-left p,
.mission-left p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #374151;
}

.vision-right ul,
.mission-right ul {
  padding-left: 2rem;
  list-style-type: circle;
}

.vision-right li,
.mission-right li {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.message-box {
  position: relative;
  text-align: center;
  margin-top: 4rem;
  padding: 1rem;
}

.cloud-box {
  background: linear-gradient(135deg, #fdf2fd, #d3f7fc);
  padding: 3rem 2rem;
  border-radius: 50% / 30%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  font-size: 1.2rem;
  color: #333;
  max-width: 850px;
  margin: auto;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
  line-height: 1.7;
}

.cloud-box:hover {
  transform: scale(1.03);
}

.director-name {
  display: block;
  margin-top: 1.5rem;
  font-weight: bold;
  font-size: 1rem;
  color: #0a3d62;
}

.sticker {
  position: absolute;
  width: 130px;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.sticker1 {
  top: -30px;
  left: 10px;
}

.sticker2 {
  bottom: -30px;
  right: 20px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .custom-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    margin-left: 0;
    text-align: center;
    margin-top: 1.5rem;
  }

  .vision-layout,
  .mission-layout {
    flex-direction: column;
    gap: 1.5rem;
  }

  .vision-left,
  .vision-right,
  .mission-left,
  .mission-right {
    flex: 1 1 100%;
  }

  .vision-left p,
  .mission-left p {
    font-size: 1.4rem;
  }

  .vision-right li,
  .mission-right li {
    font-size: 1.3rem;
  }

  .cloud-box {
    font-size: 1rem;
    padding: 2rem 1.5rem;
    border-radius: 40% / 20%;
  }

  .sticker {
    width: 60px;
  }

  .sticker1 {
    top: -10px;
    left: 5px;
  }

  .sticker2 {
    bottom: -10px;
    right: 10px;
  }
}

/* End Vision, Mission & Message  */

/* Working Section */

#digicloud .services {
  flex-direction: column;
  text-align: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 100px 20px;
  box-sizing: border-box;
}

#digicloud .service-top {
  max-width: 1000px;
  margin: 0 auto;
}

#digicloud .service-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

#digicloud .service-item {
  flex-basis: 45%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  border-radius: 10px;
  background-image: url(../images/Hero-sec.png);
  background-size: cover;
  background-position: center;
  margin: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#digicloud .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(3, 52, 124, 0.3);
}

#digicloud .service-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(60deg, #90ffe7 0%, #0373ea 100%);
  opacity: 0.9;
  z-index: -1;
}

#digicloud .service-bottom .icon {
  height: 80px;
  width: 80px;
  margin-bottom: 20px;
}

#digicloud .service-item h2 {
  font-size: 2rem;
  color: rgb(0, 0, 0);
  margin-bottom: 10px;
  text-transform: uppercase;
}

#digicloud .service-item p {
  color: rgb(7, 8, 16);
  text-align: left;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}
.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

.service-item.digicloud-effect:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3),
    0 0 10px rgba(13, 148, 148, 0.2);
  transition: all 0.4s ease;
}

@media (max-width: 768px) {
  #digicloud .service-item {
    flex-basis: 100%;
    padding: 20px;
  }

  #digicloud .service-item h2 {
    font-size: 1.5rem;
  }

  #digicloud .service-item p {
    font-size: 0.95rem;
  }

  #digicloud .service-bottom .icon {
    height: 60px;
    width: 60px;
  }

  #digicloud .services {
    padding: 50px 15px;
  }
}

@media (max-width: 480px) {
  #digicloud .service-item h2 {
    font-size: 1.3rem;
  }

  #digicloud .service-item p {
    font-size: 0.9rem;
  }
}

/* End Working Section */

/* Sponsered Section */
#clients {
  background: linear-gradient(to right, #e0f7fa, #dffafd, #caf3f9);
  padding: 50px 20px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 90px;
}

.client-container {
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.client-track {
  display: flex;
  width: calc(250px * 30);
  animation: scrollLogos 30s linear infinite;
}

.client-slide {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 10px 0;
}

.client-slide img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  filter: none;
  border-radius: 8px;
}

.client-slide img:hover {
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(33, 150, 243, 0.5);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .client-slide {
    gap: 20px;
  }

  .client-slide img {
    height: 50px;
  }
}

/* End Sponsered Section */

/* ------------------------------------Home Page Ends--------------------------- */

/* ------------------------------------About Us Page Starts--------------------------- */

/* About Digicloud */
.aboutdigicloud {
  background: linear-gradient(to top, #eef5ff, #dafefe);
  width: 100%;
  height: 120vh;
}

.about-section {
  margin: 0 auto;
  padding: 4rem 2rem;
  max-width: 1200px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 7rem;
}

.about-text {
  flex: 1;
  min-width: 15rem;
  animation: fadeInUp 1s ease-out;
}

.animate-heading {
  font-size: 4rem;
  font-weight: 300;
  color: black;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

.animate-heading span {
  color: #002f6c;
  font-weight: bold;
  transition: all 0.4s ease;
}

.about-text p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
}

.bottom-text p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
  padding: 0px 150px 10px 180px;
  animation: fadeInUp 1s ease-out;
}

.composition {
  flex: 1;
  min-width: 26rem;
  position: relative;
  height: 25rem;
  transition: all 0.5s ease;
}

.composition__photo {
  width: 50%;
  height: 20rem;
  margin-top: 10rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  position: absolute;
  outline-offset: 2rem;
  z-index: 10;
  transition: all 0.2s;
}

/* @media (max-width: 66.25em) {
  .composition__photo {
    float: left;
    position: relative;
    width: 33.3333333%;
  }
} */

.composition__photo--p1 {
  left: 4rem;
  top: -2rem;
}
/* @media (max-width: 66.25em) {
  .composition__photo--p1 {
    top: 1rem;
    transform: scale(1.2);
  }
} */

.composition__photo--p2 {
  right: -2rem;
  top: 2rem;
}
/* @media (max-width: 66.25em) {
  .composition__photo--p2 {
    top: -1rem;
    right: 0;
    transform: scale(1.3);
    z-index: 100;
  }
} */

.composition__photo--p3 {
  left: 20%;
  top: 16.5rem;
}
/* @media (max-width: 66.25em) {
  .composition__photo--p3 {
    top: 1rem;
    left: 0;
    transform: scale(1.2);
  }
} */

.composition__photo:hover {
  transform: scale(1.3) translateY(-1rem);
  box-shadow: 0 2.5rem 4rem rgba(34, 34, 34, 0.5);
  z-index: 200;
}

.composition:hover .composition__photo:not(:hover) {
  transform: scale(1.2);
}

.animate-heading,
.animate-photos {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.animate-heading.show,
.animate-photos.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .aboutdigicloud {
    height: auto;
    padding-bottom: 4rem;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    gap: 2rem;
    padding: 0 1rem;
  }

  .about-text {
    width: 100%;
    text-align: justify;
  }

  .animate-heading {
    font-size: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }

  .about-text p {
    font-size: 1.2rem;
    padding: 0 1rem;
    line-height: 1.7;
  }

  .composition {
    position: relative;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .composition__photo {
    position: relative;
    width: 80%;
    height: auto;
    margin: 1rem 0;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
    border-radius: 5px;
  }

  .composition__photo--p1,
  .composition__photo--p2,
  .composition__photo--p3 {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    z-index: 1;
  }

  .bottom-text {
    padding: 0 4rem;
    margin-top: 2rem;
    text-align: justify;
  }

  .bottom-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    padding: 0;
  }
}

/* End About Digicloud */

/* Working procedure of Digicloud */

.circular-flow {
  background: linear-gradient(to bottom, #eef5ff, #dafefe);
  padding: 4rem 2rem;
  text-align: center;
}

.flow-heading {
  font-size: 4rem;
  font-weight: 300;
  color: black;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  animation: fadeUp 1s ease forwards;
}

.flow-heading span {
  color: #002f6c;
  font-weight: bold;
  animation: fadeUp 1s ease forwards;
}

.flow-wrapper {
  max-width: 100rem;
  margin: 4rem auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
}

.circle-item {
  background: #fff;
  border-radius: 50%;
  width: 25rem;
  min-height: 25rem;
  padding: 2rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  box-sizing: border-box;
}

.circle-item.show {
  opacity: 1;
  transform: translateY(0);
}

.circle-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
}

.red {
  border: 6px solid #c0392b;
}
.green {
  border: 6px solid #27ae60;
}
.purple {
  border: 6px solid #002f6c;
}

.circle-item h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 1rem;
}

.circle-item ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: #444;
  font-size: 1rem;
  text-align: left;
  line-height: 1.5rem;
  margin: 0;
}

.arrow-right {
  width: 3rem;
  height: 3rem;
  position: relative;
  margin-top: 10rem;
  animation: bounceArrowRight 1.5s infinite;
}

.arrow-right::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 0;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1.5rem solid #666;
  transform: translateY(-50%);
}

@keyframes bounceArrowRight {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceArrow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@media (max-width: 768px) {
  .flow-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .circle-item {
    width: 90%;
    border-radius: 1rem;
    min-height: auto;
  }

  .circle-item ul {
    text-align: center;
    padding-left: 0;
  }

  .arrow-right {
    display: none;
  }
}

/* End Working procedure of Digicloud */

/* Gallery section */
.gallery-section {
  background: linear-gradient(to top, #fcfcfc, #dafefe);
  padding: 4rem 20rem;
  margin: auto;
  text-align: center;
}

.gallery-title {
  font-size: 4rem;
  font-weight: 300;
  color: black;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  animation: fadeUp 1s ease forwards;
}

.gallery-title span {
  color: #002f6c;
  font-weight: bold;
  animation: fadeUp 1s ease forwards;
}

.gallery-title::after {
  content: "";
  width: 60%;
  height: 2px;
  display: block;
  margin: 0.5rem auto 0;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover {
  box-shadow: 0 0 20px rgba(141, 198, 63, 0.4);
}

.gallery-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.gallery-item.show {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 97%;
  max-height: 95%;
  border-radius: 1rem;
  box-shadow: 0 0 20px #00aaff;
}

.close-btn {
  position: absolute;
  top: 2rem;
  right: 1.8rem;
  width: 3rem;
  height: 3rem;
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  background-color: #3d00d6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.201);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.close-btn:hover {
  background-color: #00aaff;
  transform: scale(1.1);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #8dc63f;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  z-index: 1001;
  transition: color 0.3s ease;
}

.nav-btn:hover {
  color: #00aaff;
}

.prev {
  left: 2rem;
}

.next {
  right: 2rem;
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 2rem 1rem;
  }

  .lightbox img {
    max-width: 95%;
    max-height: 50%;
  }

  .close-btn {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    top: 1rem;
    right: 1rem;
  }

  .nav-btn {
    font-size: 2rem;
    padding: 0.5rem;
  }

  .prev {
    left: 1rem;
  }

  .next {
    right: 1rem;
  }
}

/* End Gallery section */

/* Experience of DigiCloud */

.stats-section {
  background: #111;
  color: #fff;
  padding: 4rem 10rem 4rem 20rem;
  margin: auto;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.years-box {
  flex: 1 1 300px;
}

.years-number {
  font-size: 10rem;
  font-weight: bold;
  color: #8dc63f;
}

.years-box p {
  font-size: 1.3rem;
  color: #ccc;
}

.years-box h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex: 2 1 600px;
  justify-content: space-between;
}

.stat-box {
  flex: 1 1 180px;
}

.stat-number {
  font-size: 4rem;
  color: #00aaff;
  font-weight: bold;
}

.stat-box p {
  font-size: 1rem;
  color: #ccc;
}

@media (max-width: 767px) {
  .stats-section {
    padding: 2rem 1rem;
  }

  .stats-container {
    flex-direction: column;
    align-items: center;
    gap: .1rem;
  }

  .years-box {
    text-align: center;
  }

  .years-number {
    font-size: 4rem;
  }

  .years-box h2 {
    font-size: 1.2rem;
  }

  .stats-grid {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: -1rem;
  }

  .stat-box {
    width: 100%;
    max-width: 280px;
    margin-top: -6rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}


/* End Experience of DigiCloud */

/* Digicloud Lifestyle */
.life-digicloud {
  width: 100%;
  min-height: 60vh;
  background: linear-gradient(to bottom, #dafefe, #fcfcfc);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.life-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.life-image-slider {
  position: relative;
  flex: 1 1 45%;
  min-width: 300px;
  height: 45vh;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.2);
}

.life-photo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.life-photo.active {
  opacity: 1;
  z-index: 1;
}

.life-content {
  flex: 1 1 50%;
  min-width: 300px;
  margin-left: 30px;
  animation: fadeInRight 1.5s ease-out;
}

.life-heading {
  font-size: 4rem;
  font-weight: 300;
  color: black;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  animation: fadeUp 1s ease forwards;
}

.life-heading span {
  color: #002f6c;
  font-weight: bold;
  animation: fadeUp 1s ease forwards;
}

.life-heading::after {
  content: "";
  width: 60px;
  height: 3px;
  /* background-color: #00aaff; */
  display: block;
  margin-top: 0.5rem;
}

.life-text {
  font-size: 1.5rem;
  color: #333;
  line-height: 1.7;
  max-width: 100%;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .life-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .life-content {
    padding-top: 1rem;
    margin-left: 2px;
  }

  .life-image-slider {
    height: 50vh;
  }
}

/* End Digicloud Lifestyle */

/* ------------------------------------About Us Page Ends--------------------------- */

/* ------------------------------------Services Page --------------------------- */

/* Services Section */

.solutions-section {
  max-width: 100rem;
  margin: 90px auto;
  position: relative;
  padding-bottom: 6rem;
  margin-bottom: 240px;
}

.solutions-image-container {
  overflow: hidden;
  border-radius: 1rem;
}

.solutions-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

.solutions-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 90rem;
  padding: 0 2rem;
  z-index: 10;
}

.solutions-card {
  flex: 1 1 calc(33.333% - 2rem);
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(20, 99, 126, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.solutions-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.solutions-icon {
  font-size: 2.5rem;
  background: #000000;
  color: #ffffff;
  width: 3.5rem;
  height: 3.5rem;
  margin: -3rem auto 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
}

.solutions-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.solutions-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.solutions-more {
  text-decoration: none;
  color: #007bff;
  font-weight: 600;
  border-top: 1px solid #ccc;
  padding-top: 0.5rem;
  display: inline-block;
  transition: color 0.2s ease;
}

.solutions-more:hover {
  color: #0056b3;
}

.fade-in.animate {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .solutions-card {
    flex: 1 1 calc(50% - 2rem);
  }
}

@media (max-width: 600px) {
  .solutions-cards {
    position: static;
    transform: none;
    margin-top: 2rem;
    margin-bottom: -25rem;
  }

  .solutions-card {
    flex: 1 1 100%;
  }

  .solutions-icon {
    margin: -2rem auto 1rem auto;
  }
}

/* End Services Section */

/* Services Details Section */

.section-heading {
  height: 70px;
  width: 75vw;
  background: linear-gradient(to right, #cce5ff, #66b2ff);
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 2rem;
  border-radius: 0 50px 50px 0;
  margin: 4rem 0 2rem 0;
  animation: slideIn 0.8s ease both;
  color: #003366;
  font-size: 1.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.section-heading h2 {
  margin-left: 50rem;
  width: 100%;
}

.section-heading:hover {
  background: linear-gradient(to right, #b3daff, #3399ff);
  cursor: pointer;
  transform: scale(1.02);
}

.solution-detail {
  max-width: 100rem;
  margin: 0 auto 5rem;
  padding: 2rem;
}

.solution-detail-content {
  max-width: 100rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease;
}

.solution-text {
  flex: 1 1 40rem;
}

.solution-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #222;
}

.solution-text p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #444;
}

.solution-image {
  flex: 1 1 40rem;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.solution-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.solution-image:hover img {
  transform: scale(1.05);
}

.left-curve {
  height: 70px;
  width: 75vw;
  background: linear-gradient(to right, #66b2ff, #cce5ff);
  color: #003366;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 2rem;
  border-radius: 50px 0 0 50px;
  margin: 4rem 0 2rem auto;
  animation: slideIn 0.8s ease both;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  font-weight: bold;
}

.left-curve:hover {
  background: linear-gradient(to right, #3399ff, #b3daff);
  cursor: pointer;
  transform: scale(1.02);
}

.left-curve h2 {
  margin-right: 30rem;
  width: 100%;
}

.service-extra-details {
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: #f7fbff;
  border-left: 4px solid #007acc;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.service-extra-details h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.service-extra-details ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.service-extra-details ul li {
  margin-bottom: 0.5rem;
}
.service-extra-details p {
  font-size: 0.95rem;
  color: #333;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .section-heading,
  .left-curve {
    width: 90vw;
    font-size: 1.2rem;
    height: auto;
    padding: 1rem;
    border-radius: 0 30px 30px 0;
    justify-content: center;
    text-align: center;
  }

  .section-heading h2,
  .left-curve h2 {
    margin: 0;
    font-size: 1.2rem;
  }

  .left-curve {
    border-radius: 30px 0 0 30px;
    justify-content: center;
    text-align: center;
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .solution-detail {
    padding: 1rem;
  }

  .solution-detail-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .solution-text,
  .solution-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .solution-text h3 {
    font-size: 1.5rem;
  }

  .solution-text p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .service-extra-details {
    padding: 1rem;
  }

  .service-extra-details h4 {
    font-size: 1.2rem;
  }

  .service-extra-details p {
    font-size: 0.95rem;
  }

  .service-extra-details ul {
    margin-left: 1rem;
  }
}

/* End Services Details Section */

/* ------------------------------------Services Page Ends--------------------------- */

/* ------------------------------------Contact Page --------------------------- */

.contact-header {
  height: 50vh;
  width: 100%;
  background: linear-gradient(to right, #d1fcfc, #fcfcfc);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  animation: fadeInDown 1.5s ease;
}

.contact-message h1 {
  font-size: 3rem;
  font-weight: 300;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.contact-message h1 span {
  color: #002f6c;
  font-weight: bold;
}

.contact-message p {
  font-size: 1.2rem;
  color: #333;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
 .contact-message h1{
  margin-top: 1rem;
  padding: 1rem 3rem;
 }

 .contact-message p{
  padding: 0 2rem;
 }
}

/* Contact Details Section */
#contact {
  width: 100%;
  height: 55vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #f5f7fa, #f9fffe);
  padding: 20px;
}

#contact .contact {
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

#contact .section-title {
  font-size: 4rem;
  color: #222;
  margin-bottom: 40px;
}

#contact .section-title span {
  color: #002f6c;
}

#contact .contact-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  margin-top: 1rem;
}

#contact .contact-item {
  background: #fff;
  width: 300px;
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 0px 18px 0 #360ee7df;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact .contact-item:hover {
  box-shadow: 0px 0px 10px 0 #dc0ef3e3;
  transform: translateY(-5px);
}

#contact .icon {
  width: 70px;
  margin-bottom: 15px;
}

#contact .icon img {
  width: 100%;
}

#contact .contact-info h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

#contact .contact-info h2 {
  font-size: 1.1rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: #373737;
}

#contact .contact-info h3 {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: #373737;
}

@media (max-width: 768px) {
  #contact {
    height: auto;
    padding: 40px 20px;
  }

  #contact .section-title{
    text-align: center;
    margin-right: 5rem;
  }

  #contact .contact-items {
    flex-direction: column;
    gap: 30px;
  }

  #contact .contact-item {
    width: 90%;
  }
}

/* ------------------------------------Contact Page Ends--------------------------- */

/* Footer */

#footer {
  background-image: linear-gradient(30deg, #069be6 0%, #002f6c 100%);
  background-size: 400% 400%;
  animation: waveBackground 6s ease-in-out infinite;
  color: white;
  overflow: hidden;
  padding-top: 2rem;
  margin-top: 2rem;
  position: relative;
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 4rem 2rem 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-logo {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  height: 100px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.3));
}

.footer-logo p {
  font-size: 1.6rem;
  font-weight: 500;
  color: #f9f9f9;
  max-width: 300px;
}

.footer-links {
  flex: 1 1 60%;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-column h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ffffff66;
  padding-bottom: 0.5rem;
}

.footer-column a {
  display: block;
  color: #f0f0f0;
  font-size: 1.3rem;
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-column a:hover {
  color: #ffffff;
  transform: translateX(5px);
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 1.2rem;
  color: #e0e0e0;
  border-top: 1px solid #ffffff22;
  margin-top: 2rem;
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #069be6;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
  z-index: 999;
}

#backToTop:hover {
  background-color: #003c64;
}

@keyframes waveBackground {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 60%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 40%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    padding: 3rem 1.5rem 2rem;
  }

  .footer-logo {
    flex: none;
    width: 100%;
    text-align: center;
    margin-bottom: 2.5rem;
    align-items: center;
  }

  .footer-logo img {
    margin: 0 auto;
    height: 80px;
    width: 250px;
  }

  .footer-logo p {
    font-size: 0.2rem;
    max-width: 100%;
    margin-top: 0.5rem;
  }

  .footer-links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .footer-column {
    flex: 1 1 45%;
    min-width: 140px;
  }

  .footer-column h4 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 2px solid #ffffff66;
    padding-bottom: 0.5rem;
  }

  .footer-column a {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .footer-column a:hover {
    color: #ffffff;
    transform: translateX(6px) scale(1.05);
    text-decoration: underline;
  }

  .footer-bottom {
    font-size: 1.3rem;
    padding: 1.5rem 1rem;
  }
}

/* End Footer */
