/* =========================
SERVICES INFO SECTION
========================= */

.service-info-sec{

  position:relative;

  overflow:hidden;

  padding:110px 20px;

  background:
  linear-gradient(
    180deg,
    #071226 0%,
    #050816 100%
  );

}

/* =========================
GLOW
========================= */

.service-glow{

  position:absolute;

  border-radius:50%;

  filter:blur(120px);

}

/* LEFT */

.glow-left{

  top:-120px;
  left:-120px;

  width:320px;
  height:320px;

  background:
  rgba(37,99,235,0.10);

}

/* RIGHT */

.glow-right{

  right:-120px;
  bottom:-120px;

  width:340px;
  height:340px;

  background:
  rgba(168,85,247,0.10);

}

/* =========================
WRAP
========================= */

.service-info-wrap{

  position:relative;

  z-index:2;

  max-width:1200px;

  margin:auto;

  display:grid;

  grid-template-columns:
  60% 40%;

  gap:55px;

  align-items:center;

}

/* =========================
CONTENT
========================= */

.service-info-con{

  position:relative;

}

/* TAG */

.service-tag{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:13px 24px;

  margin-bottom:28px;

  border-radius:60px;

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

  backdrop-filter:blur(12px);

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

  color:#60A5FA;

  font-size:14px;

  font-weight:500;

}

/* TITLE */

.service-info-con h2{

  margin-bottom:30px;

  font-size:48px;

  line-height:1.16;

  color:#ffffff;

}

/* TEXT */

.service-text{

  display:flex;

  flex-direction:column;

  gap:24px;

}

.service-text p{

  font-size:17px;

  line-height:1.95;

  color:#CBD5E1;

}

/* LINKS */

.service-text a{

  color:#60A5FA;

  text-decoration:none;

  transition:0.3s ease;

}

.service-text a:hover{

  color:#93C5FD;

}

/* =========================
IMAGE
========================= */

.service-info-img{

  position:relative;

  overflow:hidden;

  border-radius:34px;

}

/* IMAGE */

.service-info-img img{

  width:100%;

  height:650px;

  object-fit:cover;

  display:block;

  border-radius:34px;

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

  transition:0.45s ease;

}

/* HOVER */

.service-info-img:hover img{

  transform:scale(1.03);

}

/* FLOAT */

.service-float{

  position:absolute;

  left:25px;
  bottom:25px;

  display:flex;

  align-items:center;

  gap:14px;

  padding:18px 22px;

  border-radius:22px;

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

  backdrop-filter:blur(14px);

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

}

/* ICON */

.service-float i{

  color:#60A5FA;

  font-size:20px;

}

/* TEXT */

.service-float span{

  font-size:15px;

  color:#ffffff;

}

/* =========================
TABLET
========================= */

@media(max-width:992px){

  .service-info-wrap{

    grid-template-columns:1fr;

  }

  .service-info-con h2{

    font-size:40px;

  }

  .service-info-img{

    order:-1;

  }

  .service-info-img img{

    height:520px;

  }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

  .service-info-sec{

    padding:85px 20px;

  }

  .service-info-wrap{

    gap:40px;

  }

  .service-info-con h2{

    font-size:34px;

    line-height:1.24;

  }

  .service-text p{

    font-size:16px;

    line-height:1.85;

  }

  .service-info-img img{

    height:430px;

  }

}

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

.srv-sec{

  position:relative;

  padding:110px 20px;

  overflow:hidden;

  background:
  linear-gradient(
    180deg,
    #0B1730 0%,
    #081122 50%,
    #050816 100%
  );

}

/* GLOW */

.srv-sec::before{

  content:'';

  position:absolute;

  left:-120px;
  bottom:-120px;

  width:420px;
  height:420px;

  border-radius:50%;

  background:
  rgba(37,99,235,0.10);

  filter:blur(120px);

}

/* HEAD */

.srv-head{

  position:relative;

  z-index:2;

  max-width:850px;

  margin:0 auto 70px;

  text-align:center;

}

/* TAG */

.srv-tag{

  display:inline-block;

  padding:12px 24px;

  margin-bottom:26px;

  border-radius:60px;

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

  backdrop-filter:blur(10px);

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

  color:#60A5FA;

  font-size:14px;

  font-weight:500;

}

/* HEADING */

.srv-head h2{

  margin-bottom:24px;

  font-size:48px;

  line-height:1.15;

  color:#ffffff;

}

/* TEXT */

.srv-head p{

  font-size:17px;

  line-height:1.9;

  color:#CBD5E1;

}

/* GRID */

.srv-grid{

  position:relative;

  z-index:2;

  max-width:1200px;

  margin:auto;

  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:28px;

}

/* CARD */

.srv-card{

  position:relative;

  padding:38px 32px;

  border-radius:28px;

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

  backdrop-filter:blur(14px);

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

  transition:0.35s ease;

  overflow:hidden;

}

/* CARD GLOW */

.srv-card::before{

  content:'';

  position:absolute;

  top:-60px;
  right:-60px;

  width:140px;
  height:140px;

  border-radius:50%;

  background:
  rgba(96,165,250,0.08);

  filter:blur(50px);

}

/* HOVER */

.srv-card:hover{

  transform:
  translateY(-8px);

  border-color:
  rgba(96,165,250,0.22);

  box-shadow:
  0 20px 50px rgba(37,99,235,0.12);

}

/* ICON */

.srv-card i{

  font-size:28px;

  margin-bottom:24px;

  color:#60A5FA;

}

/* TITLE */

.srv-card h3{

  margin-bottom:18px;

  font-size:24px;

  line-height:1.3;

  color:#ffffff;

}

/* TEXT */

.srv-card p{

  font-size:16px;

  line-height:1.9;

  color:#CBD5E1;

}

/* =========================
TABLET
========================= */

@media(max-width:992px){

  .srv-grid{

    grid-template-columns:
    repeat(2,1fr);

  }

  .srv-head h2{

    font-size:40px;

  }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

  .srv-sec{

    padding:90px 20px;

  }

  .srv-grid{

    grid-template-columns:1fr;

    gap:22px;

  }

  .srv-head{

    margin-bottom:50px;

  }

  .srv-head h2{

    font-size:34px;

    line-height:1.25;

  }

  .srv-head p{

    font-size:16px;

    line-height:1.8;

  }

  .srv-card{

    padding:32px 24px;

  }

  .srv-card h3{

    font-size:22px;

  }

}
/* =========================
MINI GALLERY SECTION
========================= */

.mini-gal-sec{

  position:relative;

  overflow:hidden;

  padding:110px 20px;

  background:
  linear-gradient(
    180deg,
    #071226 0%,
    #050816 100%
  );

}

/* =========================
HEAD
========================= */

.mini-gal-head{

  max-width:850px;

  margin:auto auto 70px;

  text-align:center;

}

/* TAG */

.mini-gal-tag{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:13px 24px;

  margin-bottom:28px;

  border-radius:60px;

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

  backdrop-filter:blur(12px);

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

  color:#60A5FA;

  font-size:14px;

  font-weight:500;

}

/* TITLE */

.mini-gal-head h2{

  margin-bottom:28px;

  font-size:48px;

  line-height:1.16;

  color:#ffffff;

}

/* TEXT */

.mini-gal-head p{

  font-size:17px;

  line-height:1.9;

  color:#CBD5E1;

}

/* =========================
GRID
========================= */

.mini-gal-sec .gal-grid{

  max-width:1200px;

  margin:auto;

  grid-template-columns:
  repeat(4,1fr);

}

/* =========================
BUTTON
========================= */

.mini-gal-btn-wrap{

  display:flex;

  justify-content:center;

  margin-top:55px;

}

/* BUTTON */

.mini-gal-btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  min-width:220px;

  height:60px;

  padding:0 34px;

  border-radius:60px;

  text-decoration:none;

  background:
  linear-gradient(
    135deg,
    #2563EB,
    #60A5FA
  );

  color:#ffffff;

  font-size:15px;

  font-weight:600;

  transition:0.35s ease;

}

/* HOVER */

.mini-gal-btn:hover{

  transform:
  translateY(-4px);

}

/* =========================
TABLET
========================= */

@media(max-width:1100px){

  .mini-gal-sec .gal-grid{

    grid-template-columns:
    repeat(2,1fr);

  }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

  .mini-gal-sec{

    padding:85px 20px;

  }

  .mini-gal-head{

    margin-bottom:50px;

  }

  .mini-gal-head h2{

    font-size:34px;

    line-height:1.24;

  }

  .mini-gal-head p{

    font-size:16px;

    line-height:1.85;

  }

  .mini-gal-sec .gal-grid{

    grid-template-columns:
    repeat(2,1fr);

    gap:18px;

  }

  .mini-gal-btn{

    width:100%;

    max-width:320px;

  }

}
/* =========================
LUXURY SECTION
========================= */

.lux-sec{

  position:relative;

  overflow:hidden;

  padding:110px 20px;

  background:
  linear-gradient(
    180deg,
    #050816 0%,
    #071226 100%
  );

}

/* =========================
GLOW
========================= */

.lux-glow{

  position:absolute;

  border-radius:50%;

  filter:blur(120px);

}

/* LEFT */

.glow-left{

  top:-120px;
  left:-120px;

  width:320px;
  height:320px;

  background:
  rgba(37,99,235,0.10);

}

/* RIGHT */

.glow-right{

  right:-120px;
  bottom:-120px;

  width:340px;
  height:340px;

  background:
  rgba(168,85,247,0.10);

}

/* =========================
WRAP
========================= */

.lux-wrap{

  position:relative;

  z-index:2;

  max-width:900px;

  margin:auto;

  text-align:center;

}

/* TAG */

.lux-tag{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:13px 24px;

  margin-bottom:30px;

  border-radius:60px;

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

  backdrop-filter:blur(12px);

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

  color:#60A5FA;

  font-size:14px;

  font-weight:500;

}

/* TITLE */

.lux-wrap h2{

  margin-bottom:34px;

  font-size:46px;

  line-height:1.18;

  color:#ffffff;

}

/* TEXT */

.lux-text{

  display:flex;

  flex-direction:column;

  gap:24px;

  margin-bottom:46px;

}

.lux-text p{

  font-size:17px;

  line-height:1.95;

  color:#CBD5E1;

}

/* =========================
POINTS
========================= */

.lux-points{

  display:flex;

  align-items:center;

  justify-content:center;

  flex-wrap:wrap;

  gap:20px;

}

/* PILL */

.lux-pill{

  display:flex;

  align-items:center;

  gap:14px;

  padding:18px 24px;

  border-radius:60px;

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

  backdrop-filter:blur(14px);

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

  transition:0.35s ease;

}

/* HOVER */

.lux-pill:hover{

  transform:
  translateY(-4px);

  border-color:
  rgba(255,255,255,0.14);

}

/* ICON */

.lux-pill i{

  color:#60A5FA;

  font-size:18px;

}

/* TEXT */

.lux-pill span{

  font-size:15px;

  color:#ffffff;

  font-weight:500;

}

/* =========================
TABLET
========================= */

@media(max-width:992px){

  .lux-wrap h2{

    font-size:40px;

  }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

  .lux-sec{

    padding:85px 20px;

  }

  .lux-wrap h2{

    font-size:34px;

    line-height:1.24;

  }

  .lux-text p{

    font-size:16px;

    line-height:1.85;

  }

  .lux-points{

    flex-direction:column;

  }

  .lux-pill{

    width:100%;

    justify-content:center;

  }

}