/* =========================
PREMIUM BANNER
========================= */

.premium-banner{

    position:relative;

    min-height:100vh;

    overflow:hidden;

}

/* IMAGE */

.banner-picture{

    position:absolute;

    inset:0;

    z-index:1;

}

.banner-img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    display:block;

}

/* VERY LIGHT OVERLAY */

.banner-overlay{

    position:absolute;

    inset:0;

    z-index:2;

    background:

    linear-gradient(

        90deg,

        rgba(5,8,22,.28) 0%,

        rgba(5,8,22,.18) 35%,

        rgba(5,8,22,.08) 70%,

        rgba(5,8,22,.05) 100%

    );

}

/* CONTAINER */

.banner-container{

    position:relative;

    z-index:3;

    max-width:1250px;

    margin:auto;

    min-height:100vh;

    display:flex;

    align-items:center;

    padding:0 20px;

}

/* CONTENT */

.banner-content{

    max-width:560px;

}

/* TAG */

.banner-tag{

    display:inline-block;

    padding:12px 24px;

    margin-bottom:28px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(8px);

    color:#ffffff;

    font-size:15px;

    font-weight:600;

}

/* TITLE */

.banner-content h1{

    font-family:'Playfair Display',serif;

    font-size:55px;

    line-height:1.08;

    margin-bottom:24px;

    color:#ffffff;

}

/* TEXT */
a{

    color:inherit;

    text-decoration:none;

}

a:hover{

    color:#60A5FA;

}
.banner-content p{

    font-size:18px;

    line-height:1.8;

    color:#E2E8F0;

    margin-bottom:40px;

}

/* BUTTONS */

.banner-actions{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

/* BUTTON */

.banner-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:18px 36px;

    border-radius:50px;

    text-decoration:none;

    font-size:17px;

    font-weight:600;

    transition:.35s;

}

/* PRIMARY */

.primary-btn{

    background:#2563EB;

    color:#fff;

}

.primary-btn:hover{

    background:#3B82F6;

}

/* SECONDARY */

.secondary-btn{

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

}

.secondary-btn:hover{

    background:rgba(255,255,255,.18);

}

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

@media(max-width:991px){

    .banner-content h1{

        font-size:56px;

    }

    .banner-content p{

        font-size:20px;

    }

}

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

@media(max-width:768px){

    .premium-banner{

        min-height:700px;

    }

    .banner-img{

        object-position:center top;

    }

    .banner-container{

        align-items:flex-end;

        padding:0 20px 80px;

        min-height:700px;

    }

    .banner-content{

        max-width:100%;

    }

    .banner-tag{

        font-size:14px;

        padding:10px 20px;

        margin-bottom:18px;

    }

    .banner-content h1{

        font-size:40px;

    }

    .banner-content p{

        font-size:18px;

        line-height:1.7;

        margin-bottom:28px;

    }

    .banner-actions{

        display:flex;

        flex-direction:row;

        justify-content:center;

        align-items:center;

        gap:12px;

        margin-top:25px;

    }

    .banner-btn{

        flex:1;

        max-width:170px;

        height:52px;

        padding:0 18px;

        font-size:15px;

        border-radius:40px;


    }

}

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

@media(max-width:480px){

    .premium-banner{

        min-height:640px;

    }

    .banner-container{

        min-height:640px;

        padding-bottom:70px;

    }
  .banner-btn{

        max-width:155px;

        height:48px;

        font-size:14px;

    }
    .banner-content h1{

        font-size:40px;

    }

    .banner-content p{

        font-size:16px;

    }

}

/* =========================
ABOUT SECTION
========================= */

.exp-sec{

  position:relative;

  padding:110px 20px;

  overflow:hidden;

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

}

/* GLOW */

.exp-sec::before{

  content:'';

  position:absolute;

  top:-180px;

  right:-120px;

  width:420px;

  height:420px;

  border-radius:50%;

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

  filter:blur(120px);

}

/* WRAP */

.exp-wrap{

  position:relative;

  z-index:2;

  max-width:1200px;

  margin:auto;

  display:grid;

  grid-template-columns:
  40% 60%;

  gap:55px;

  align-items:center;

}

/* IMAGE */

.exp-img{

  position:relative;

}

.exp-img img{

  width:100%;

  display:block;

  border-radius:28px;

  object-fit:cover;

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

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

}

/* FLOAT CARD */

.exp-float{

  position:absolute;

  left:30px;

  bottom:30px;

  display:flex;

  flex-direction:column;

  gap:14px;

}

/* BOX */

.exp-box{

  display:flex;

  align-items:center;

  gap:12px;

  padding:15px 22px;

  border-radius:18px;

  background:
  rgba(10,15,35,0.62);

  backdrop-filter:blur(18px);

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

  color:#ffffff;

  font-size:15px;

  font-weight:600;

  letter-spacing:0.3px;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.28);

}

/* ICON */

.exp-box i{

  color:#60A5FA;

  font-size:17px;

}

/* CONTENT */

.exp-con{

  position:relative;

}

/* TAG */

.exp-tag{

  display:inline-block;

  padding:12px 24px;

  margin-bottom:28px;

  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 */

.exp-con h2{

  margin-bottom:28px;

  font-size:40px;

  line-height:1.15;

  color:#ffffff;

}

/* TEXT */

.exp-con p{

  margin-bottom:22px;

  font-size:17px;

  line-height:1.9;

  color:#CBD5E1;

}

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

@media(max-width:992px){

  /* NAV */

  .menu-toggle{

    display:block;

  }

  .nav-icons{

    display:none;

  }

  .nav-menu{

    position:fixed;

    top:85px;

    right:-100%;

    width:290px;

    height:calc(100vh - 85px);

    padding:40px 28px;

    background:
    linear-gradient(
      180deg,
      #081122,
      #050816
    );

    flex-direction:column;

    align-items:flex-start;

    gap:30px;

    transition:0.45s ease;

  }

  .nav-menu.active{

    right:0;

  }

  .mobile-icons{

    display:none;

    flex-direction:column;

    gap:16px;

    width:100%;

  }

  .mobile-call,
  .mobile-whatsapp{

    width:100%;

    padding:15px 20px;

    border-radius:14px;

    text-decoration:none;

    display:flex;

    align-items:center;

    gap:12px;

    color:#ffffff;

  }

  .mobile-call{

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

  }

  .mobile-whatsapp{

    background:
    linear-gradient(
      135deg,
      #14532d,
      #22c55e
    );

  }



  /* ABOUT */

  .exp-wrap{

    grid-template-columns:1fr;

    gap:50px;

  }

  .exp-con{

    text-align:center;

  }

  .exp-con h2{

    font-size:42px;

  }

}
@media(max-width:768px){

  .exp-wrap{

    grid-template-columns:1fr;

    gap:40px;

  }

  .exp-img{

    order:2;

  }

  .exp-con{

    order:1;

  }

  .exp-img img{

    height:auto;

    border-radius:22px;

  }

  .exp-con h2{

    font-size:34px;

  }

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

@media(max-width:768px){

  .premium-banner{

    position:relative;

    min-height:100vh;

    padding:120px 20px 60px;

    display:flex;

    align-items:flex-end;

    justify-content:center;

    overflow:hidden;

    background-image:
    linear-gradient(
      rgba(5,10,25,0.10),
      rgba(5,10,25,0.45)
    ),
    url("../images/banner-mobile.webp");

    background-size:100% auto;

    background-position:center top;

    background-repeat:no-repeat;

    background-color:#050816;

  }

  .banner-content{

    width:100%;

    text-align:center;

    margin-top:auto;

  }

  .banner-content h1{

    font-size:38px;

    line-height:1.12;

  }

  .banner-content p{

    font-size:16px;

    line-height:1.8;

  }

  .banner-actions{

    justify-content:center;

    gap:14px;

    flex-wrap:nowrap;

  }

  .banner-btn{

    min-width:150px;

    padding:14px 20px;

    font-size:14px;

  }

  /* ABOUT */

  .exp-sec{

    padding:90px 20px;

  }



  .exp-con{

    text-align:left;

  }

  .exp-con h2{

    font-size:34px;

    line-height:1.25;

  }

  .exp-con p{

    font-size:16px;

    line-height:1.8;

  }

}

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

@media(max-width:480px){

  .logo{

    font-size:24px;

  }

  .banner-content h1{

    font-size:34px;

  }

}


/* =========================
WHY SECTION
========================= */

.why-sec{

  position:relative;

  padding:110px 20px;

  overflow:hidden;

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

}

/* GLOW */

.why-sec::before{

  content:'';

  position:absolute;

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

  width:380px;
  height:380px;

  border-radius:50%;

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

  filter:blur(120px);

}

/* HEAD */

.why-head{

  position:relative;

  z-index:2;

  max-width:850px;

  margin:0 auto 70px;

  text-align:center;

}

/* TAG */

.why-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 */

.why-head h2{

  margin-bottom:24px;

  font-size:46px;

  line-height:1.15;

  color:#ffffff;

}

/* TEXT */

.why-head p{

  font-size:17px;

  line-height:1.9;

  color:#CBD5E1;

}

/* GRID */

.why-grid{

  position:relative;

  z-index:2;

  max-width:1200px;

  margin:auto;

  display:grid;

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

  gap:28px;

}

/* CARD */

.why-card{

  position:relative;

  padding:38px 30px;

  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;

}

/* GLOW */

.why-card::before{

  content:'';

  position:absolute;

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

  width:130px;
  height:130px;

  border-radius:50%;

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

  filter:blur(50px);

}

/* HOVER */

.why-card:hover{

  transform:
  translateY(-8px);

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

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

}

/* ICON */

.why-icon{

  width:68px;
  height:68px;

  margin-bottom:28px;

  border-radius:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
  linear-gradient(
    135deg,
    rgba(37,99,235,0.22),
    rgba(96,165,250,0.10)
  );

  border:
  1px solid rgba(96,165,250,0.18);

}

/* ICON */

.why-icon i{

  font-size:26px;

  color:#60A5FA;

}

/* TITLE */

.why-card h3{

  margin-bottom:18px;

  font-size:24px;

  line-height:1.35;

  color:#ffffff;

}

/* TEXT */

.why-card p{

  font-size:16px;

  line-height:1.9;

  color:#CBD5E1;

}

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

@media(max-width:992px){

  .why-grid{

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

  }

  .why-head h2{

    font-size:40px;

  }

}

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

@media(max-width:768px){

  .why-sec{

    padding:90px 20px;

  }

  .why-head{

    margin-bottom:50px;

  }

  .why-head h2{

    font-size:34px;

    line-height:1.25;

  }

  .why-head p{

    font-size:16px;

    line-height:1.8;

  }

  .why-grid{

    grid-template-columns:1fr;

    gap:22px;

  }

  .why-card{

    padding:32px 24px;

  }

  .why-card h3{

    font-size:22px;

  }

}

/* =========================
PREMIUM EXPERIENCE SECTION
========================= */

.whyx-sec{

  position:relative;

  padding:110px 20px;

  overflow:hidden;

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

}

/* GLOW */

.whyx-sec::before{

  content:'';

  position:absolute;

  left:-140px;
  top:-140px;

  width:420px;
  height:420px;

  border-radius:50%;

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

  filter:blur(120px);

}

/* WRAP */

.whyx-wrap{

  position:relative;

  z-index:2;

  max-width:1200px;

  margin:auto;

  display:grid;

  grid-template-columns:
  55% 45%;

  gap:55px;

  align-items:start;

}
.whyx-icon{

    width:46px;
    height:46px;

    border-radius:14px;

    background:linear-gradient(
    135deg,
    rgba(37,99,235,.18),
    rgba(96,165,250,.12));

    border:1px solid rgba(96,165,250,.25);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#60A5FA;

    font-size:18px;

    flex-shrink:0;

}
.whyx-list{

    list-style:none;

    padding:0;

    margin:35px 0 0;

}

.whyx-list li i{

    color:#60A5FA;

    font-size:18px;

    min-width:24px;

    margin-top:5px;

}
/* TAG */

.whyx-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 */

.whyx-con h2{

  margin-bottom:26px;

  font-size:40px;

  line-height:1.15;

  color:#ffffff;

}

/* TEXT */

.whyx-con p{

  margin-bottom:24px;

  font-size:17px;

  line-height:1.9;

  color:#CBD5E1;

}

/* GRID */

.whyx-grid{

  display:grid;

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

  gap:22px;

}

/* BOX */

.whyx-box{

  position:relative;

  padding:32px 26px;

  border-radius:26px;

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

  backdrop-filter:blur(14px);

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

  overflow:hidden;

  transition:0.35s ease;

}

/* HOVER */

.whyx-box:hover{

  transform:
  translateY(-6px);

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

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

}

/* ICON */

.whyx-box i{

  font-size:26px;

  margin-bottom:22px;

  color:#60A5FA;

}

/* TITLE */

.whyx-box h3{

  margin-bottom:16px;

  font-size:22px;

  line-height:1.35;

  color:#ffffff;

}

/* TEXT */

.whyx-box p{

  font-size:15px;

  line-height:1.8;

  color:#CBD5E1;

}

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

@media(max-width:992px){

  .whyx-wrap{

    grid-template-columns:1fr;

  }

  .whyx-con h2{

    font-size:40px;

  }

}

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

@media(max-width:768px){

  .whyx-sec{

    padding:90px 20px;

  }

  .whyx-grid{

    grid-template-columns:1fr;

  }

  .whyx-con h2{

    font-size:34px;

    line-height:1.25;

  }

  .whyx-con p{

    font-size:16px;

    line-height:1.8;

  }

}

/* =========================
BOOKING SECTION
========================= */

.book-sec{

  position:relative;

  padding:110px 20px;

  overflow:hidden;

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

}

/* GLOW */

.book-sec::before{

  content:'';

  position:absolute;

  right:-140px;
  bottom:-140px;

  width:420px;
  height:420px;

  border-radius:50%;

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

  filter:blur(120px);

}

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

.book-head{

  position:relative;

  z-index:2;

  max-width:850px;

  margin:0 auto 70px;

  text-align:center;

}

/* TAG */

.book-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;

}

/* TITLE */

.book-head h2{

  margin-bottom:24px;

  font-size:48px;

  line-height:1.15;

  color:#ffffff;

}

/* TEXT */

.book-head p{

  font-size:17px;

  line-height:1.9;

  color:#CBD5E1;

}

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

.book-grid{

  position:relative;

  z-index:2;

  max-width:1200px;

  margin:auto;

  display:grid;

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

  gap:28px;

}

/* =========================
CARD
========================= */

.book-card{

  position:relative;

  padding:40px 30px;

  border-radius:30px;

  overflow:hidden;

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

  backdrop-filter:blur(14px);

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

  transition:0.35s ease;

}

/* GLOW */

.book-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 */

.book-card:hover{

  transform:
  translateY(-8px);

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

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

}

/* NUMBER */

.book-no{

  position:absolute;

  top:18px;
  right:20px;

  font-size:48px;

  font-weight:700;

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

}

/* ICON */

.book-card i{

  font-size:28px;

  margin-bottom:26px;

  color:#60A5FA;

}

/* TITLE */

.book-card h3{

  margin-bottom:18px;

  font-size:24px;

  line-height:1.35;

  color:#ffffff;

}

/* TEXT */

.book-card p{

  font-size:15px;

  line-height:1.9;

  color:#CBD5E1;

}

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

@media(max-width:992px){

  .book-grid{

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

  }

  .book-head h2{

    font-size:40px;

  }

}

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

@media(max-width:768px){

  .book-sec{

    padding:90px 20px;

  }

  .book-head{

    margin-bottom:50px;

  }

  .book-head h2{

    font-size:34px;

    line-height:1.25;

  }

  .book-head p{

    font-size:16px;

    line-height:1.8;

  }

  .book-grid{

    grid-template-columns:1fr;

    gap:22px;

  }

  .book-card{

    padding:34px 24px;

  }

  .book-card h3{

    font-size:22px;

  }

}
/* =========================
PORTFOLIO SECTION
========================= */

.port-sec{

  position:relative;

  padding:110px 20px;

  overflow:hidden;

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

}

/* GLOW */

.port-sec::before{

  content:'';

  position:absolute;

  left:-140px;
  bottom:-140px;

  width:420px;
  height:420px;

  border-radius:50%;

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

  filter:blur(120px);

}

/* WRAP */

.port-wrap{

  position:relative;

  z-index:2;

  max-width:1200px;

  margin:auto;

  display:grid;

  grid-template-columns:
  40% 60%;

  gap:55px;

  align-items:center;

}

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

.port-img{

  position:relative;

}

.port-img img{

  width:100%;

  height:700px;

  object-fit:cover;

  object-position:center top;

  border-radius:30px;

  display:block;

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

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

  transition:
  transform 0.8s ease,
  filter 0.5s ease;

}
.port-img:hover img{

  transform:
  scale(1.05)
  translateY(-6px);

  filter:brightness(1.05);

}
.port-img::before{

  content:'';

  position:absolute;

  inset:0;

  background:
  linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    transparent
  );

  opacity:0;

  transition:0.5s ease;

  z-index:2;

}

.port-img:hover::before{

  opacity:1;

}

/* FLOAT */

.port-float{

  position:absolute;

  left:24px;
  bottom:24px;

  display:flex;

  flex-direction:column;

  gap:14px;

}

/* MINI CARD */

.port-mini{

  display:flex;

  align-items:center;

  gap:12px;

  padding:15px 20px;

  border-radius:18px;

  background:
  rgba(10,15,35,0.65);

  backdrop-filter:blur(16px);

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

  color:#ffffff;

  font-size:14px;

  font-weight:600;

  box-shadow:
  0 12px 30px rgba(0,0,0,0.22);

}

/* ICON */

.port-mini i{

  color:#60A5FA;

  font-size:16px;

}

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

.port-con{

  position:relative;

}

/* TAG */

.port-tag{

  display:inline-block;

  padding:12px 24px;

  margin-bottom:28px;

  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 */

.port-con h2{

  margin-bottom:28px;

  font-size:44px;

  line-height:1.15;

  color:#ffffff;

}

/* TEXT */

.port-con p{

  margin-bottom:24px;

  font-size:17px;

  line-height:1.9;

  color:#CBD5E1;

}

/* BUTTON */

.port-btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  margin-top:12px;

  padding:16px 34px;

  border-radius:60px;

  text-decoration:none;

  font-size:15px;

  font-weight:600;

  color:#ffffff;

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

  box-shadow:
  0 15px 35px rgba(37,99,235,0.22);

  transition:0.35s ease;

}

/* HOVER */

.port-btn:hover{

  transform:
  translateY(-4px);

}

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

@media(max-width:992px){

  .port-wrap{

    grid-template-columns:1fr;

    gap:50px;

  }

  .port-con h2{

    font-size:40px;

  }

}

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

@media(max-width:768px){

  .port-sec{

    padding:90px 20px;

  }

  .port-wrap{

    grid-template-columns:1fr;

    gap:40px;

  }

  .port-img{

    order:1;

  }

  .port-con{

    order:2;

  }

  .port-img img{

    height:auto;

    border-radius:24px;

  }

  .port-con h2{

    font-size:34px;

    line-height:1.25;

  }

  .port-con p{

    font-size:16px;

    line-height:1.8;

  }

}

/* =========================
PROFILE SECTION
========================= */

.pro-sec{

  position:relative;

  padding:110px 20px;

  overflow:hidden;

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

}

/* GLOW */

.pro-sec::before{

  content:'';

  position:absolute;

  right:-140px;
  top:-140px;

  width:420px;
  height:420px;

  border-radius:50%;

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

  filter:blur(120px);

}

/* WRAP */

.pro-wrap{

  position:relative;

  z-index:2;

  max-width:1200px;

  margin:auto;

  display:grid;

  grid-template-columns:
  60% 40%;

  gap:55px;

  align-items:center;

}

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

.pro-con{

  position:relative;

}

/* TAG */

.pro-tag{

  display:inline-block;

  padding:12px 24px;

  margin-bottom:28px;

  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 */

.pro-con h2{

  margin-bottom:28px;

  font-size:44px;

  line-height:1.15;

  color:#ffffff;

}

/* TEXT */

.pro-con p{

  margin-bottom:24px;

  font-size:17px;

  line-height:1.9;

  color:#CBD5E1;

}

/* BUTTON */

.pro-btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  margin-top:12px;

  padding:16px 34px;

  border-radius:60px;

  text-decoration:none;

  font-size:15px;

  font-weight:600;

  color:#ffffff;

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

  box-shadow:
  0 15px 35px rgba(37,99,235,0.22);

  transition:0.35s ease;

}

/* HOVER */

.pro-btn:hover{

  transform:
  translateY(-4px);

}
.pro-list{

    display:flex;
    flex-direction:column;
    gap:22px;
    margin:35px 0;

}

.pro-item{

    display:flex;
    gap:16px;
    align-items:flex-start;

}

.pro-item i{

    color:#60A5FA;
    font-size:18px;
    margin-top:5px;
    min-width:20px;

}

.pro-item strong{

    display:block;
    font-size:22px;
    margin-bottom:8px;
    color:#fff;

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

.pro-img{

  position:relative;

  overflow:hidden;

  border-radius:30px;

}

.pro-img img{

  width:100%;

  height:700px;

  object-fit:cover;

  object-position:center top;

  border-radius:30px;

  display:block;

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

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

  transition:
  transform 0.8s ease,
  filter 0.5s ease;

}

/* HOVER */

.pro-img:hover img{

  transform:
  scale(1.05)
  translateY(-6px);

  filter:brightness(1.05);

}

/* SHINE */

.pro-img::before{

  content:'';

  position:absolute;

  inset:0;

  background:
  linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    transparent
  );

  opacity:0;

  transition:0.5s ease;

  z-index:2;

}

.pro-img:hover::before{

  opacity:1;

}

/* FLOAT */

.pro-float{

  position:absolute;

  left:24px;
  bottom:24px;

  display:flex;

  flex-direction:column;

  gap:14px;

  z-index:3;

}

/* MINI */

.pro-mini{

  display:flex;

  align-items:center;

  gap:12px;

  padding:15px 20px;

  border-radius:18px;

  background:
  rgba(10,15,35,0.65);

  backdrop-filter:blur(16px);

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

  color:#ffffff;

  font-size:14px;

  font-weight:600;

  box-shadow:
  0 12px 30px rgba(0,0,0,0.22);

}

/* ICON */

.pro-mini i{

  color:#60A5FA;

  font-size:16px;

}

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

@media(max-width:992px){

  .pro-wrap{

    grid-template-columns:1fr;

    gap:50px;

  }

  .pro-con h2{

    font-size:40px;

  }

}

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

@media(max-width:768px){

  .pro-sec{

    padding:90px 20px;

  }

  .pro-wrap{

    grid-template-columns:1fr;

    gap:40px;

  }

  .pro-img{

    order:1;

  }

  .pro-con{

    order:2;

  }

  .pro-img img{

    height:auto;

    border-radius:24px;

  }

  .pro-con h2{

    font-size:34px;

    line-height:1.25;

  }

  .pro-con p{

    font-size:16px;

    line-height:1.8;

  }

}
/* =========================
CATEGORY SECTION
========================= */

.cat-sec{

  position:relative;

  padding:110px 20px;

  overflow:hidden;

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

}

/* GLOW */

.cat-sec::before{

  content:'';

  position:absolute;

  left:-140px;
  top:-140px;

  width:420px;
  height:420px;

  border-radius:50%;

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

  filter:blur(120px);

}

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

.cat-head{

  position:relative;

  z-index:2;

  max-width:850px;

  margin:0 auto 70px;

  text-align:center;

}

/* TAG */

.cat-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;

}

/* TITLE */

.cat-head h2{

  margin-bottom:24px;

  font-size:46px;

  line-height:1.15;

  color:#ffffff;

}

/* TEXT */

.cat-head p{

  font-size:17px;

  line-height:1.9;

  color:#CBD5E1;

}

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

.cat-grid{

  position:relative;

  z-index:2;

  max-width:1200px;

  margin:auto;

  display:grid;

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

  gap:26px;

}

/* =========================
CARD
========================= */

.cat-card{

  position:relative;
  align-items:start;
   height:auto;

    min-height:unset;
  display:block;
  flex-direction:column;
  justify-content:flex-start;

  padding:38px 30px;

  border-radius:28px;

  overflow:hidden;

  text-decoration:none;

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

  backdrop-filter:blur(14px);

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

  transition:.35s ease;

}

/* GLOW */

.cat-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 */

.cat-card:hover{

  transform:
  translateY(-8px);

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

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

}

/* ICON */

.cat-icon{

  width:70px;
  height:70px;

  margin-bottom:28px;

  border-radius:22px;

  display:flex;

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

  background:
  linear-gradient(
    135deg,
    rgba(37,99,235,0.20),
    rgba(96,165,250,0.08)
  );

  border:
  1px solid rgba(96,165,250,0.18);

}
.cat-more{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-top:24px;

    color:#60A5FA;

    font-size:14px;

    font-weight:600;

}
/* ICON */

.cat-icon i{

  font-size:28px;

  color:#60A5FA;

}

/* TITLE */

.cat-card h3{

  margin-bottom:14px;

  font-size:22px;

  line-height:1.3;

  color:#ffffff;

}

/* TEXT */

.cat-card p{
	
	 flex:1;
	 
  font-size:15px;

  line-height:1.8;

  color:#CBD5E1;

}

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

@media(max-width:992px){

  .cat-grid{

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

  }

  .cat-head h2{

    font-size:34px;

  }

}

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

@media(max-width:768px){

  .cat-sec{

    padding:90px 20px;

  }

  .cat-head{

    margin-bottom:50px;

  }

  .cat-head h2{

    font-size:34px;

    line-height:1.25;

  }

  .cat-head p{

    font-size:16px;

    line-height:1.8;

  }

  .cat-grid{

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

    gap:18px;

  }

  .cat-card{

    padding:28px 20px;

  }

  .cat-icon{

    width:58px;
    height:58px;

    margin-bottom:22px;

  }

  .cat-icon i{

    font-size:22px;

  }

  .cat-card h3{

    font-size:20px;

  }

  .cat-card p{

    font-size:14px;

    line-height:1.7;

  }

}

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

@media(max-width:480px){

  .cat-grid{

    grid-template-columns:1fr;

  }

}
/* =========================
PREMIUM CTA SECTION
========================= */

.cta-sec{

  position:relative;

  padding:120px 20px;

  overflow:hidden;

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

}

/* GLOW */

.cta-sec::before{

  content:'';

  position:absolute;

  top:-140px;
  left:50%;

  transform:translateX(-50%);

  width:500px;
  height:500px;

  border-radius:50%;

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

  filter:blur(130px);

}

/* WRAP */

.cta-wrap{

  position:relative;

  z-index:2;

  max-width:900px;

  margin:auto;

  text-align:center;

}

/* TAG */

.cta-tag{

  display:inline-block;

  padding:12px 24px;

  margin-bottom:28px;

  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 */

.cta-wrap h2{

  margin-bottom:30px;

  font-size:48px;

  line-height:1.15;

  color:#ffffff;

}

/* TEXT */

.cta-wrap p{

  margin-bottom:24px;

  font-size:17px;

  line-height:1.95;

  color:#CBD5E1;

}

/* BUTTON AREA */

.cta-btns{

  display:flex;

  align-items:center;

  justify-content:center;

  gap:18px;

  flex-wrap:wrap;

  margin-top:45px;

}

/* BUTTON */

.cta-btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  gap:10px;

  padding:16px 34px;

  border-radius:60px;

  text-decoration:none;

  font-size:15px;

  font-weight:600;

  transition:0.35s ease;

}

/* PRIMARY */

.primary-btn{

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

  color:#ffffff;

  box-shadow:
  0 15px 35px rgba(37,99,235,0.22);

}

/* SECONDARY */

.secondary-btn{

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

  backdrop-filter:blur(10px);

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

  color:#ffffff;

}

/* HOVER */

.cta-btn:hover{

  transform:
  translateY(-4px);

}

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

@media(max-width:992px){

  .cta-wrap h2{

    font-size:40px;

  }

}

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

@media(max-width:768px){

  .cta-sec{

    padding:90px 20px;

  }

  .cta-wrap h2{

    font-size:34px;

    line-height:1.25;

  }

  .cta-wrap p{

    font-size:16px;

    line-height:1.85;

  }

  .cta-btns{

    gap:14px;

  }

  .cta-btn{

    width:100%;

  }

}
/* =========================
LOCATION SECTION
========================= */

.loc-sec{

  position:relative;

  padding:110px 20px;

  overflow:hidden;

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

}

/* GLOW */

.loc-sec::before{

  content:'';

  position:absolute;

  right:-140px;
  bottom:-140px;

  width:420px;
  height:420px;

  border-radius:50%;

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

  filter:blur(120px);

}

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

.loc-head{

  position:relative;

  z-index:2;

  max-width:850px;

  margin:0 auto 60px;

  text-align:center;

}

/* TAG */

.loc-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;

}

/* TITLE */

.loc-head h2{

  margin-bottom:24px;

  font-size:46px;

  line-height:1.15;

  color:#ffffff;

}

/* TEXT */

.loc-head p{

  font-size:17px;

  line-height:1.9;

  color:#CBD5E1;

}

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

.loc-grid{

  position:relative;

  z-index:2;

  max-width:1100px;

  margin:auto;

  display:flex;

  flex-wrap:wrap;

  justify-content:center;

  gap:18px;

}

/* ITEM */

.loc-item{

  position:relative;

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:18px 28px;

  border-radius:60px;

  text-decoration:none;

  font-size:15px;

  font-weight:500;

  color:#ffffff;

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

  backdrop-filter:blur(12px);

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

  transition:0.35s ease;

  overflow:hidden;

}

/* GLOW */

.loc-item::before{

  content:'';

  position:absolute;

  inset:0;

  background:
  linear-gradient(
    135deg,
    rgba(37,99,235,0.14),
    rgba(96,165,250,0.04)
  );

  opacity:0;

  transition:0.35s ease;

}

/* HOVER */

.loc-item:hover{

  transform:
  translateY(-4px);

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

  box-shadow:
  0 16px 35px rgba(37,99,235,0.14);

}

.loc-item:hover::before{

  opacity:1;

}

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

.loc-btn-wrap{

  text-align:center;

  margin-top:50px;

}

/* BUTTON */

.loc-btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:16px 34px;

  border-radius:60px;

  text-decoration:none;

  font-size:15px;

  font-weight:600;

  color:#ffffff;

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

  box-shadow:
  0 15px 35px rgba(37,99,235,0.22);

  transition:0.35s ease;

}

/* HOVER */

.loc-btn:hover{

  transform:
  translateY(-4px);

}

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

@media(max-width:992px){

  .loc-head h2{

    font-size:40px;

  }

}

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

@media(max-width:768px){

  .loc-sec{

    padding:90px 20px;

  }

  .loc-head{

    margin-bottom:45px;

  }

  .loc-head h2{

    font-size:34px;

    line-height:1.25;

  }

  .loc-head p{

    font-size:16px;

    line-height:1.8;

  }

  .loc-grid{

    gap:14px;

  }

  .loc-item{

    padding:15px 22px;

    font-size:14px;

  }

}
/* =========================
TESTIMONIAL SECTION
========================= */

.test-sec{

  position:relative;

  padding:110px 20px;

  overflow:hidden;

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

}

/* GLOW */

.test-sec::before{

  content:'';

  position:absolute;

  left:-140px;
  top:-140px;

  width:420px;
  height:420px;

  border-radius:50%;

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

  filter:blur(120px);

}

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

.test-head{

  position:relative;

  z-index:2;

  max-width:850px;

  margin:0 auto 70px;

  text-align:center;

}

/* TAG */

.test-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;

}

/* TITLE */

.test-head h2{

  margin-bottom:24px;

  font-size:46px;

  line-height:1.15;

  color:#ffffff;

}

/* TEXT */

.test-head p{

  font-size:17px;

  line-height:1.9;

  color:#CBD5E1;

}

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

.test-grid{

  position:relative;

  z-index:2;

  max-width:1200px;

  margin:auto;

  display:grid;

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

  gap:28px;

}

/* =========================
CARD
========================= */

.test-card{

  position:relative;

  padding:38px 32px;

  border-radius:30px;

  overflow:hidden;

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

  backdrop-filter:blur(14px);

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

  transition:0.35s ease;

}

/* GLOW */

.test-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 */

.test-card:hover{

  transform:
  translateY(-8px);

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

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

}

/* STARS */

.test-stars{

  display:flex;

  gap:6px;

  margin-bottom:24px;

}

.test-stars i{

  color:#FBBF24;

  font-size:15px;

}

/* REVIEW TEXT */

.test-card p{

  margin-bottom:28px;

  font-size:16px;

  line-height:1.9;

  color:#CBD5E1;

}

/* USER */

.test-user h3{

  margin-bottom:6px;

  font-size:20px;

  color:#ffffff;

}

/* LOCATION */

.test-user span{

  font-size:14px;

  color:#60A5FA;

}

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

@media(max-width:992px){

  .test-grid{

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

  }

  .test-head h2{

    font-size:40px;

  }

}

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

@media(max-width:768px){

  .test-sec{

    padding:90px 20px;

  }

  .test-head{

    margin-bottom:50px;

  }

  .test-head h2{

    font-size:34px;

    line-height:1.25;

  }

  .test-head p{

    font-size:16px;

    line-height:1.8;

  }

  .test-grid{

    grid-template-columns:1fr;

    gap:22px;

  }

  .test-card{

    padding:32px 24px;

  }

}
/* =========================
FAQ SECTION
========================= */

.faq-sec{

  position:relative;

  padding:110px 20px;

  overflow:hidden;

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

}

/* GLOW */

.faq-sec::before{

  content:'';

  position:absolute;

  right:-140px;
  bottom:-140px;

  width:420px;
  height:420px;

  border-radius:50%;

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

  filter:blur(120px);

}

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

.faq-head{

  position:relative;

  z-index:2;

  max-width:850px;

  margin:0 auto 60px;

  text-align:center;

}

/* TAG */

.faq-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;

}

/* TITLE */

.faq-head h2{

  margin-bottom:24px;

  font-size:46px;

  line-height:1.15;

  color:#ffffff;

}

/* TEXT */

.faq-head p{

  font-size:17px;

  line-height:1.9;

  color:#CBD5E1;

}

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

.faq-wrap{

  position:relative;

  z-index:2;

  max-width:900px;

  margin:auto;

}

/* ITEM */

.faq-item{

  margin-bottom:20px;

  border-radius:24px;

  overflow:hidden;

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

  backdrop-filter:blur(14px);

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

  transition:0.35s ease;

}

/* HOVER */

.faq-item:hover{

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

  box-shadow:
  0 18px 40px rgba(37,99,235,0.10);

}

/* QUESTION */

.faq-question{

  width:100%;

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:20px;

  padding:26px 30px;

  background:none;

  border:none;

  outline:none;

  cursor:pointer;

  color:#ffffff;

  font-size:19px;

  font-weight:600;

  text-align:left;

}

/* ICON */

.faq-question i{

  font-size:16px;

  color:#60A5FA;

  transition:0.35s ease;

}

/* ANSWER */

.faq-answer{

  max-height:0;

  overflow:hidden;

  transition:0.4s ease;

}

/* TEXT */

.faq-answer p{

  padding:
  0 30px 28px;

  font-size:16px;

  line-height:1.9;

  color:#CBD5E1;

}

/* ACTIVE */

.faq-item.active .faq-answer{

  max-height:300px;

}

.faq-item.active .faq-question i{

  transform:rotate(45deg);

}

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

@media(max-width:992px){

  .faq-head h2{

    font-size:40px;

  }

}

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

@media(max-width:768px){

  .faq-sec{

    padding:90px 20px;

  }

  .faq-head{

    margin-bottom:45px;

  }

  .faq-head h2{

    font-size:34px;

    line-height:1.25;

  }

  .faq-head p{

    font-size:16px;

    line-height:1.8;

  }

  .faq-question{

    padding:22px 22px;

    font-size:17px;

  }

  .faq-answer p{

    padding:
    0 22px 24px;

    font-size:15px;

  }

}
/* =========================
FOOTER SECTION
========================= */

.foot-sec{

  position:relative;

  overflow:hidden;

 background:
linear-gradient(
  180deg,
  #050816 0%,
  #081224 40%,
  #03050D 100%
);

  border-top:
  1px solid rgba(96,165,250,0.12);

}
.foot-sec::after{

  content:'';

  position:absolute;

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

  width:320px;
  height:320px;

  border-radius:50%;

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

  filter:blur(100px);

}
/* GLOW */

.foot-sec::before{

  content:'';

  position:absolute;

  left:-140px;
  top:-140px;

  width:420px;
  height:420px;

  border-radius:50%;

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

  filter:blur(120px);

}

/* =========================
TOP CTA
========================= */

.foot-cta{

  position:relative;

  z-index:2;

  max-width:900px;

  margin:auto;

  padding:110px 20px 90px;

  text-align:center;

  border-bottom:
  1px solid rgba(255,255,255,0.06);

}

/* TAG */

.foot-cta-tag{

  display:inline-block;

  padding:12px 24px;

  margin-bottom:28px;

  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;

}

/* TITLE */

.foot-cta h2{

  margin-bottom:28px;

  font-size:48px;

  line-height:1.15;

  color:#ffffff;

}

/* TEXT */

.foot-cta p{

  max-width:760px;

  margin:auto;

  font-size:17px;

  line-height:1.9;

  color:#CBD5E1;

}

/* CTA BUTTONS */

.foot-cta-btns{

  display:flex;

  align-items:center;

  justify-content:center;

  gap:18px;

  flex-wrap:wrap;

  margin-top:42px;

}

/* BUTTON */

.foot-cta-btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  gap:10px;

  padding:16px 34px;

  border-radius:60px;

  text-decoration:none;

  font-size:15px;

  font-weight:600;

  transition:0.35s ease;

}

/* PRIMARY */

.primary-btn{

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

  color:#ffffff;

  box-shadow:
  0 15px 35px rgba(37,99,235,0.22);

}

/* SECONDARY */

.secondary-btn{

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

  backdrop-filter:blur(10px);

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

  color:#ffffff;

}

/* HOVER */

.foot-cta-btn:hover{

  transform:
  translateY(-4px);

}

/* =========================
MAIN FOOTER
========================= */

.foot-wrap{

  position:relative;

  z-index:2;

  max-width:1200px;

  margin:auto;

  padding:80px 20px;

  display:grid;

  grid-template-columns:
  1.2fr 1fr 1fr 1fr;

  gap:50px;

}

/* LOGO */

.foot-logo{

  display:inline-block;

  margin-bottom:24px;

  text-decoration:none;

  font-size:32px;

  font-weight:700;

  letter-spacing:2px;

  color:#ffffff;

}

.foot-logo span{

  color:#60A5FA;

}

/* TEXT */

.foot-text{

  font-size:16px;

  line-height:1.9;

  color:#CBD5E1;

}

/* TITLE */

.foot-col h3{

  margin-bottom:24px;

  font-size:22px;

  color:#ffffff;

}

/* LIST */

.foot-col ul{

  list-style:none;

}

.foot-col ul li{

  margin-bottom:16px;

}

/* LINKS */

.foot-col ul li a{

  text-decoration:none;

  font-size:15px;

  color:#CBD5E1;

  transition:0.35s ease;

}

.foot-col ul li a:hover{

  color:#60A5FA;

  padding-left:6px;

}

/* CONTACT */

.foot-contact{

  display:flex;

  flex-direction:column;

  gap:16px;

}

/* CONTACT LINK */

.foot-link{

  display:flex;

  align-items:center;

  gap:12px;

  text-decoration:none;

  font-size:15px;

  color:#CBD5E1;

  transition:0.35s ease;

}

.foot-link i{

  color:#60A5FA;

  font-size:16px;

}

.foot-link:hover{

  color:#ffffff;

  transform:
  translateX(6px);

}

/* =========================
BOTTOM
========================= */

.foot-bottom{

  position:relative;

  z-index:2;

  padding:28px 20px;

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

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:20px;

  flex-wrap:wrap;

  max-width:1200px;

  margin:auto;

}

/* TEXT */

.foot-bottom p{

  font-size:14px;

  color:#94A3B8;

}

/* LINKS */

.foot-bottom-links{

  display:flex;

  align-items:center;

  gap:24px;

  flex-wrap:wrap;

}

.foot-bottom-links a{

  text-decoration:none;

  font-size:14px;

  color:#94A3B8;

  transition:0.35s ease;

}

.foot-bottom-links a:hover{

  color:#60A5FA;

}

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

@media(max-width:992px){

  .foot-wrap{

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

  }

  .foot-cta h2{

    font-size:40px;

  }

}

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

@media(max-width:768px){

  .foot-cta{

    padding:90px 20px 70px;

  }

  .foot-cta h2{

    font-size:34px;

    line-height:1.25;

  }

  .foot-cta p{

    font-size:16px;

    line-height:1.8;

  }

  .foot-cta-btn{

    width:100%;

  }

  .foot-wrap{

    grid-template-columns:1fr;

    gap:40px;

    padding:70px 20px;

  }

  .foot-logo{

    font-size:28px;

  }

  .foot-bottom{

    flex-direction:column;

    align-items:flex-start;

  }

  .foot-bottom-links{

    gap:18px;

  }

}
/* =========================
DESKTOP FLOATING
========================= */

.float-contact{

  position:fixed;

  right:24px;

  top:50%;

  transform:translateY(-50%);

  z-index:9999;

  display:flex;

  flex-direction:column;

  gap:16px;

}

/* BUTTON */

.float-btn{

  position:relative;

  width:62px;
  height:62px;

  border-radius:50%;

  display:flex;

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

  text-decoration:none;

  backdrop-filter:blur(14px);

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

  box-shadow:
  0 15px 35px rgba(0,0,0,0.30);

  overflow:hidden;

  transition:0.35s ease;

}

/* ICON */

.float-btn i{

  font-size:24px;

  color:#ffffff;

  position:relative;

  z-index:2;

}

/* CALL */

.call-btn{

  background:
  linear-gradient(
    135deg,
    #DC2626,
    #BE123C
  );

}

/* WHATSAPP */

.whatsapp-btn{

  background:
  linear-gradient(
    135deg,
    #16A34A,
    #22C55E
  );

}

/* GLOW */

.float-btn::before{

  content:'';

  position:absolute;

  inset:0;

  background:
  linear-gradient(
    180deg,
    rgba(255,255,255,0.18),
    transparent
  );

  opacity:0;

  transition:0.35s ease;

}

/* HOVER */

.float-btn:hover{

  transform:
  translateY(-6px)
  scale(1.05);

}

.float-btn:hover::before{

  opacity:1;

}

/* =========================
MOBILE CONTACT BAR
========================= */

.mobile-contact{

  position:fixed;

  left:0;
  bottom:0;

  width:100%;

  z-index:9999;

  padding:14px;

  display:none;

  align-items:center;

  gap:14px;

  background:
  rgba(5,8,22,0.92);

  backdrop-filter:blur(18px);

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

}

/* BUTTON */

.mobile-btn{

  flex:1;

  height:58px;

  border-radius:18px;

  display:flex;

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

  gap:10px;

  text-decoration:none;

  font-size:18px;

  font-weight:700;

  color:#ffffff;

  box-shadow:
  0 12px 30px rgba(0,0,0,0.25);

}

/* ICON */

.mobile-btn i{

  font-size:20px;

}

/* CALL */

.mobile-call-btn{

  background:
  linear-gradient(
    135deg,
    #DC2626,
    #BE123C
  );

}

/* WHATSAPP */

.mobile-whatsapp-btn{

  background:
  linear-gradient(
    135deg,
    #16A34A,
    #22C55E
  );

}

/* Desktop First */
.float-contact{
    display:flex;
}

.mobile-contact{
    display:none;
}

/* Tablet */
@media (max-width:991px){

    .float-contact{
        display:none;
    }

    .mobile-contact{
        display:flex;
    }

}

/* Small Mobile */
@media (max-width:480px){

    .mobile-btn{
        height:52px;
        font-size:16px;
    }

}

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

.content-sec{

    position:relative;

    padding:100px 20px;

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

    overflow:hidden;

}

/* GLOW */

.content-sec::before{

    content:"";

    position:absolute;

    top:-150px;
    left:-150px;

    width:420px;
    height:420px;

    border-radius:50%;

    background:
    rgba(96,165,250,.08);

    filter:blur(120px);

}

/* WRAP */

.content-wrap{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:0 auto;

}

/* TAG */

.content-tag{

    display:inline-block;

    padding:12px 24px;

    margin-bottom:28px;

    border-radius:50px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    color:#60A5FA;

    font-size:14px;

    font-weight:600;

}

/* HEADING */

.content-wrap h2{

    margin:0 0 24px;

    color:#ffffff;

    font-size:39px;

    line-height:1.25;

    font-weight:700;

}

.content-wrap h3{

    margin:0 0 24px;

    color:#ffffff;

    font-size:32px;

    line-height:1.25;

    font-weight:700;

}
/* PARAGRAPH */

.content-wrap p{

    margin-bottom:22px;

    color:#CBD5E1;

    font-size:17px;

    line-height:1.95;

}

/* STRONG */

.content-wrap strong{

    color:#ffffff;

    font-weight:600;

}

/* LINKS */

.content-wrap a{

    color:#60A5FA;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.content-wrap a:hover{

    color:#8CC5FF;

}

.content-wrap a:visited{

    color:#60A5FA;

}

/* LIST */

.content-wrap ul{

    margin:25px 0;

    padding-left:22px;

}

.content-wrap li{

    color:#CBD5E1;

    font-size:17px;

    line-height:1.9;

    margin-bottom:12px;

}

/* SPACING */

.content-wrap h2:not(:first-of-type){

    margin-top:60px;

}

/* TABLET */

@media(max-width:992px){

    .content-wrap{

        max-width:820px;

    }

    .content-wrap h2{

        font-size:36px;

    }

.content-wrap h3{

        font-size:28px;

    }
}

/* MOBILE */

@media(max-width:768px){

    .content-sec{

        padding:70px 20px;

    }

    .content-wrap{

        max-width:100%;

    }

    .content-tag{

        margin-bottom:22px;

        font-size:13px;

    }

    .content-wrap h2{

        font-size:30px;

        line-height:1.35;

    }
	 .content-wrap h3{

        font-size:24px;

        line-height:1.35;

    }

    .content-wrap p{

        font-size:16px;

        line-height:1.85;

    }

    .content-wrap li{

        font-size:16px;

    }

    .content-wrap h2:not(:first-of-type){

        margin-top:45px;

    }

}

/* SMALL MOBILE */

@media(max-width:480px){

    .content-wrap h2{

        font-size:27px;

    }
	
	.content-wrap h3{

        font-size:23px;

    }

    .content-wrap p{

        font-size:15px;

    }

}