/* ================= HERO ================= */
.hero{
  height:500px;
  background:url(../images/cloud-computing-banner.gif) center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.hero-content{
  position:relative;
  color:#fff;
  text-align:center;
  z-index:2;
  animation:fadeUp 1.2s ease;
}

.hero-content h1{
  font-size:44px;
  font-weight:700;
  margin-bottom:10px;
  text-shadow:0 0 15px rgba(255,255,255,0.35);
  transition:all .4s ease;
}

.hero-content h1:hover{
  text-shadow:0 0 25px rgba(255,255,255,0.7);
}

.breadcrumb{
  font-size:14px;
  opacity:.9;
}

/* ================= INTRO SECTION ================= */
.intro{
  padding:50px 0;
}

.intro-row{
  display:flex;
  align-items:center;
  gap:50px;
}

.intro-img{
  flex:1;
}

.intro-img img{
  width:80%;
  height:400px;
  transition:transform .6s ease, filter .6s ease;
}

.intro-img img:hover{
  transform:scale(1.05);
  filter:drop-shadow(0 12px 20px rgba(0,0,0,0.25));
}

.intro-text{
  flex:1;
  animation:fadeLeft 1.2s ease;
}

.intro-text h2{
  font-size:24px;
  font-weight:600;
  margin-bottom:15px;
  position:relative;
  display:inline-block;
}

.intro-text h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:40%;
  height:2px;
  background:#1e63d5;
  transition:width .4s ease;
}

.intro-text:hover h2::after{
  width:70%;
}

.intro-text p{
  font-size:14px;
  margin-bottom:10px;
  text-align:justify;
  color:#555;
  line-height:1.7;
}

/* ================= FEATURES ================= */
.features{
  padding:40px 0 60px;
}

.feature-line{
  position:relative;
  display:flex;
  justify-content:space-between;
  margin-bottom:30px;
}

.feature-line::before{
  content:"";
  position:absolute;
  top:25px;
  left:0%;
  right:0%;
  height:2px;
  background:#5f5e5e;
  z-index:-1;
}

.feature{
  width:30%;
  text-align:left;
  transition:transform .4s ease;
}

.feature:hover{
  transform:translateY(-6px);
}

.feature-icon{
  width:55px;
  height:55px;
  background:#B0CDEE;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
  position:relative;
  overflow:hidden;
  transition:all .4s ease;
  animation:iconFloat 4s ease-in-out infinite;
}

.feature-icon img{
  width:35px;
  transition:transform .4s ease;
}

.feature:hover .feature-icon{
  background:#1e63d5;
  box-shadow:0 8px 18px rgba(0,0,0,0.15);
}

.feature:hover .feature-icon img{
  transform:scale(1.15);
}

/* Shining effect */

.feature-icon::after{
  content:"";
  position:absolute;
  top:-120%;
  left:-120%;
  width:200%;
  height:200%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transform:rotate(25deg);
  transition:all .6s;
}

.feature:hover .feature-icon::after{
  top:120%;
  left:120%;
}

.feature h4{
  font-size:15px;
  margin-bottom:8px;
  font-weight:600;
}

.feature p{
  font-size:13px;
  color:#555;
  line-height:1.6;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media(max-width:1024px){

.hero{
  height:420px;
}

.hero-content h1{
  font-size:34px;
}

.intro-row{
  flex-direction:column;
  gap:30px;
}

.intro-img img{
  width:100%;
  height:auto;
}

.feature{
  width:32%;
}

}

@media(max-width:600px){

.hero{
  height:360px;
}

.hero-content h1{
  font-size:28px;
}

.breadcrumb{
  font-size:12px;
}

.intro{
  padding:40px 0;
}

.intro-text h2{
  font-size:20px;
}

.intro-text p{
  font-size:13px;
}

.feature-line{
  flex-direction:column;
  gap:25px;
}

.feature{
  width:100%;
  text-align:center;
}

.feature-icon{
  margin:auto;
}


.feature-line::before{
  display:none;
}

}

/* Small Mobile */
@media(max-width:480px){

.hero{
  height:300px;
}

.hero-content h1{
  font-size:24px;
}

}

/* ================= ANIMATIONS ================= */

@keyframes fadeUp{
0%{opacity:0; transform:translateY(40px);}
100%{opacity:1; transform:translateY(0);}
}

@keyframes fadeLeft{
0%{opacity:0; transform:translateX(-40px);}
100%{opacity:1; transform:translateX(0);}
}

@keyframes iconFloat{
0%{transform:translateY(0px);}
50%{transform:translateY(-5px);}
100%{transform:translateY(0px);}
}