/* =========================
   GLOBAL PAGE
========================= */

body{
  background:
    linear-gradient(
      135deg,
      #071B34,
      #081423,
      #0E2F56
    );

  color:white;

  min-height:100vh;
}


/* =========================
   PREMIUM HERO
========================= */

.hero-modern{
  position:relative;
  min-height:100vh;
  padding:120px 0 80px;
  overflow:hidden;
}

.hero-grid{
  display:grid;

  grid-template-columns:1fr 1fr;

  align-items:stretch;

  gap:40px;

  min-height:78vh;
}

/* LEFT */

.hero-left{
  position:relative;

  background-image:
    linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.45)
    ),
    url("static/images/slide1.jpg");

  background-size:cover;
  background-position:center;

  border-radius:30px;

  padding:55px;

  min-height:620px;

  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* BADGE */

.hero-badge{
  display:inline-block;

  padding:14px 24px;

  border-radius:999px;

  background:rgba(255,255,255,0.12);

  border:1px solid rgba(255,255,255,0.15);

  color:#FDBA74;

  font-weight:700;

  letter-spacing:1px;

  margin-bottom:30px;

  width:fit-content;
}

/* TITLE */

.hero-left h1{
  font-size:5rem;
  line-height:0.95;
  color:white;
  margin-bottom:35px;

  font-family:'Cormorant Garamond',serif;
}

.hero-left h1 span{
  color:#00B8C4;
}

/* TEXT */

.hero-description{
  font-size:1.3rem;
  line-height:1.8;
  color:rgba(255,255,255,0.88);

  max-width:700px;

  margin-bottom:40px;
}

/* BUTTONS */

.hero-buttons{
  display:flex;
  gap:18px;
  margin-bottom:35px;
}

/* TRUST */

.hero-trust{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
}

.trust-item{
  color:white;
  font-weight:500;
}

/* RIGHT */

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

/* DASHBOARD */

.hero-dashboard{
  width:100%;
  max-width:none;
 min-height:620px;
  padding:55px;

  background:rgba(255,255,255,0.08);

  backdrop-filter:blur(22px);

  border:1px solid rgba(255,255,255,0.12);

  border-radius:32px;
}

.hero-dashboard h3{
  font-size:2.7rem;
  color:white;
  margin-bottom:35px;

  font-family:'Cormorant Garamond',serif;
}

/* METRIC */

.metric-card{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:22px 24px;

  border-radius:24px;

  margin-bottom:22px;

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.08);

  color:white;

  font-size:1.2rem;
}

.dashboard-note{
  color:rgba(255,255,255,0.72);
  line-height:1.7;
}


/* =========================
   SERVICES
========================= */

.services{
  padding:120px 20px;
  text-align:center;
}

.services h2{
  font-size:4rem;

  color:white;

  margin-bottom:70px;

  font-family:'Cormorant Garamond',serif;

  position:relative;

  display:inline-block;
}

.services h2::after{
  content:"";

  width:90px;
  height:4px;

  border-radius:999px;

  background:
    linear-gradient(
      90deg,
      #00B8C4,
      #F97316
    );

  position:absolute;

  left:50%;
  bottom:-18px;

  transform:translateX(-50%);
}

.service-container{
  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

  gap:35px;

  max-width:1300px;

  margin:auto;
}

.service-box{
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.03)
    );

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius:28px;

  padding:40px;

  backdrop-filter:blur(18px);

  transition:0.35s ease;

  color:white;
}

.service-box:hover{
  transform:translateY(-10px);

  border:
    1px solid rgba(0,184,196,0.35);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.35);
}

.service-box i{
  font-size:52px;

  color:#00B8C4;

  margin-bottom:24px;
}

.service-box h3{
  font-size:2rem;

  margin-bottom:16px;

  color:white;

  font-family:'Cormorant Garamond',serif;
}

.service-box p{
  color:rgba(255,255,255,0.72);

  line-height:1.8;
}


/* =========================
   BLOGS
========================= */

.blogs{
  padding:120px 20px;
}

.blogs h2{
  font-size:4rem;

  color:white;

  margin-bottom:70px;

  text-align:center;

  font-family:'Cormorant Garamond',serif;

  position:relative;
}

.blogs h2::after{
  content:"";

  width:90px;
  height:4px;

  border-radius:999px;

  background:
    linear-gradient(
      90deg,
      #00B8C4,
      #F97316
    );

  position:absolute;

  left:50%;
  bottom:-18px;

  transform:translateX(-50%);
}

.blog-container{
  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(340px,1fr));

  gap:35px;

  max-width:1400px;

  margin:auto;
}

.blog-box{
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.03)
    );

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius:28px;

  overflow:hidden;

  backdrop-filter:blur(18px);

  transition:0.35s ease;
}

.blog-box:hover{
  transform:translateY(-10px);

  border:
    1px solid rgba(0,184,196,0.35);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.35);
}

.blog-content{
  padding:32px;
}

.blog-category{
  display:inline-block;

  margin-bottom:18px;

  color:#00B8C4;

  font-size:0.82rem;

  font-weight:700;

  letter-spacing:1.5px;

  text-transform:uppercase;
}

.blog-box h3{
  font-size:1.7rem;

  line-height:1.35;

  margin-bottom:18px;

  color:white;

  font-family:'Cormorant Garamond',serif;
}

.blog-box p{
  color:rgba(255,255,255,0.72);

  line-height:1.9;

  margin-bottom:28px;

  font-size:1rem;
}

/* FIX HTML CONTENT COLORS */

.blog-box p,
.blog-box span,
.blog-box div,
.blog-box li,
.blog-box ul,
.blog-box ol,
.blog-box strong,
.blog-box em,
.blog-box b{

  color: rgba(255,255,255,0.72) !important;

}

.blog-footer{
  display:flex;

  justify-content:space-between;
  align-items:center;

  padding-top:20px;

  border-top:
    1px solid rgba(255,255,255,0.08);
}

.blog-footer small{
  color:rgba(255,255,255,0.5);
}

.read-more-btn{
  background:none;

  color:#F97316;

  border:none;

  padding:0;

  font-weight:600;

  font-size:0.95rem;

  cursor:pointer;
}

.read-more-btn:hover{
  color:#FDBA74;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

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

  .hero-left h1{
    font-size:4.5rem;
  }
}

@media(max-width:768px){

  .hero-left{
    padding:40px 28px;
    min-height:auto;
  }

  .hero-left h1{
    font-size:3rem;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-dashboard h3{
    font-size:2rem;
  }

  .metric-card{
    font-size:1rem;
    padding:20px;
  }

  .services h2,
  .blogs h2{
    font-size:2.7rem;
  }

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

@media(max-width:480px){

  .hero-left h1{
    font-size:2.4rem;
  }

  .hero-description{
    font-size:1rem;
  }

  .services h2,
  .blogs h2{
    font-size:2rem;
  }

  .service-box h3,
  .blog-box h3{
    font-size:1.4rem;
  }
}
