/* Transparent navbar */
.navbar-custom{
  background: #070d19a5;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link{
  color:#fff;
  transition:0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
  color:#1e90ff !important;
  font-weight:600;
}
.relax-brand span{
  color:#fff;
}

.relax-brand small{
  color:#fff;
  font-size: x-small;
}

/* Full website background (same for all sections) */
body{
  margin: 0;
  padding: 0;
  background: url("../images/row-image1.jpg") no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

/* overlay for readability */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  /* background: rgba(0,0,0,0.55); */
  z-index: -1;
}
/* ================================
   NAVBAR
================================ */


/* Navbar on scroll */
.navbar-custom.scrolled{
  background: rgba(0,0,0,0.65);       /* ✅ add background */
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}


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

.hero-section{
  min-height: 100vh;
  padding-top: 110px; /* ✅ space for fixed navbar */
  padding-bottom: 60px;

  background: url("../images/row-image1.jpg") no-repeat center center/cover;
  position: relative;
  overflow: hidden;
}

/* hero overlay */
.hero-section::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.45); /* ✅ overlay for readability */
  z-index: 0;
}

.hero-section .container{
  position: relative;
  z-index: 1;
}


/* ================================
   ANIMATIONS
================================ */

/* Earth rotate */
.earth-img{
  max-width: 420px;
  width: 100%;
  animation: rotateEarth 15s linear infinite;
  filter: drop-shadow(0px 0px 30px rgba(0,123,255,.25));
}

@keyframes rotateEarth{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

/* Left & Right entrance animation */
.hero-left{
  opacity: 0;
  animation: leftIn 1s ease forwards;
}
.hero-right{
  opacity: 0;
  animation: rightIn 1s ease forwards;
}

@keyframes leftIn{
  from{ transform: translateX(-60px); opacity:0; }
  to{ transform: translateX(0); opacity:1; }
}
@keyframes rightIn{
  from{ transform: translateX(60px); opacity:0; }
  to{ transform: translateX(0); opacity:1; }
}


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

@media(max-width: 991px){
  .hero-section{
    text-align: center;
    padding-top: 130px;
  }
  .earth-img{
    max-width: 320px;
  }
}


.stats-card{
  position: relative;
  overflow: hidden;
  color: #fff;

  /* ✅ Full image visible */
  background: url("../images/row-image3.jpg") no-repeat center center;
  background-size: ;      /* ✅ shows full image */
 /* fill empty space */
  /* min-height: 700px; */

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

/* overlay */
.stats-card::before{
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.55); */
  z-index: 0;
}

.stats-card .row{
  position: relative;
  z-index: 1;
  width: 80%;
}

/* Responsive */
@media (max-width: 768px){
  .stats-card{
    background-size: cover; /* on mobile cover looks better */
    padding: 2.5rem 1.5rem !important;
  }
}

/* ================================
   ABOUT SHOWCASE SECTION (UPGRADED)
================================ */

.about-showcase-section{
    /* background:
      radial-gradient(circle at top right, #1a1f35, #060b16); */
    padding:0px 0;
    position:relative;
    overflow:hidden;
}

/* soft glow orb */
.about-showcase-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:#00f7ff;
    top:-120px;
    right:-120px;
    border-radius:50%;
    filter:blur(160px);
    opacity:0.25;
}

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

.about-showcase-content{
    position:relative;
    z-index:2;
}

/* Badge */
.about-badge{
    display:inline-block;
    background:rgba(0,247,255,0.15);
    color:#00f7ff;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    letter-spacing:0.5px;
    margin-bottom:25px;
}

/* Title */
.about-showcase-title{
    font-size:50px;
    font-weight:700;
    line-height:1.2;
    color:#ffffff;
}

.about-showcase-title span{
  background: linear-gradient(135deg, #00f7ff, #7b61ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.about-showcase-title{
  color:#ffffff;
}


/* Text */
.about-showcase-text{
    color:#b9c3d8;
    margin-top:22px;
    max-width:520px;
    line-height:1.7;
}

/* Button */
.about-showcase-btn{
    display:inline-block;
    margin-top:35px;
    padding:14px 34px;
    border-radius:50px;
    background:linear-gradient(135deg,#00f7ff,#7b61ff);
    color:#000;
    font-weight:600;
    text-decoration:none;
    transition:0.4s;
}

.about-showcase-btn:hover{
    transform:translateY(-6px);
    box-shadow:0 0 30px rgba(0,247,255,0.6);
}

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

.about-image-wrapper{
    max-width:550px;
    margin:auto;
    border-radius:22px;
    /* background:linear-gradient(135deg,#00f7ff,#7b61ff);
    padding:2px;
    animation:imageFloat 6s ease-in-out infinite; */
}

.about-main-image{
    width:100%;
    border-radius:20px;
    display:block;
    box-shadow:0 25px 70px rgba(0,0,0,0.6);
    transition:0.4s;
}

.about-main-image:hover{
    transform:scale(1.03);
}

/* Floating animation */
/* @keyframes imageFloat{
    0%{transform:translateY(0);}
    50%{transform:translateY(-16px);}
    100%{transform:translateY(0);}
} */

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

@media(max-width:991px){
    .about-showcase-title{
        font-size:40px;
    }
}

@media(max-width:575px){

    .about-showcase-section{
        padding:80px 0;
        text-align:center;
    }

    .about-showcase-title{
        font-size:32px;
    }

    .about-showcase-text{
        margin-left:auto;
        margin-right:auto;
    }

    .about-image-wrapper{
        margin-top:35px;
    }
}

/* ================= CORE VALUES – ULTRA EDITION ================= */

.core-values-section{
  background:
    radial-gradient(circle at top,#0d1326 0%, #070b14 60%);
  padding:130px 0;
  color:#fff;
  position:relative;
  overflow:hidden;
}

/* Floating particles glow */
.core-values-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle,#fbbf2422 1px,transparent 1px);
  background-size:60px 60px;
  opacity:.15;
}

/* HEADER */

.core-header{
  text-align:center;
  margin-bottom:80px;
}

.core-header h2{
  font-size:46px;
  font-weight:800;
  letter-spacing:0.5px;
}

.core-header span{
  background: linear-gradient(90deg, #00f7ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display:inline-block;
}
.core-header h2{
  color:#ffffff;
}


.core-header p{
  margin-top:12px;
  color:#9aa4b2;
  max-width:620px;
  margin-inline:auto;
  font-size:17px;
}

/* GRID */

.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:32px;
}

/* CARD BASE */

.value-card{
  background:rgba(255,255,255,0.035);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
  border-radius:22px;
  padding:42px 32px;
  position:relative;
  overflow:hidden;

  opacity:0;
  transform:translateY(60px) scale(0.9);
  transition:0.9s cubic-bezier(.22,1,.36,1);
}

/* Animated Gradient Border */

.value-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:linear-gradient(
    120deg,
   #00f7ff,
    transparent
  );
  opacity:0;
  transition:0.6s;
}

.value-card::after{
  content:"";
  position:absolute;
  inset:1px;
  background:#070b14;
  border-radius:21px;
}

/* CONTENT LAYER */

.value-card > *{
  position:relative;
  z-index:2;
}

/* ICON */

.icon-box{
  width:60px;
  height:60px;
  border-radius:16px;
  background:linear-gradient(135deg,#00f7ff);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin-bottom:26px;

  box-shadow:
    0 0 25px #00f7ff,
    inset 0 0 12px rgba(255,255,255,.4);

  animation:floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-6px); }
}

/* TEXT */

.value-card h3{
  font-size:21px;
  margin-bottom:14px;
  font-weight:600;
}

.value-card p{
  color:#b8c1cc;
  line-height:1.7;
  font-size:15.5px;
}

/* HOVER INTERACTIONS */

.value-card:hover{
  transform:translateY(-16px) scale(1.03);
  /* box-shadow:0 25px 60px #00f7ff; */
}

.value-card:hover::before{
  opacity:1;
}

/* Icon Pulse On Hover */

.value-card:hover .icon-box{
  transform:scale(1.1) rotate(5deg);
  box-shadow:0 0 40px #00f7ff;
}

/* ACTIVE (JS Scroll Animation) */

.value-card.active{
  opacity:1;
  transform:translateY(0) scale(1);
}

/* RESPONSIVE */

@media(max-width:1100px){
  .values-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .values-grid{
    grid-template-columns:1fr;
  }

  .core-header h2{
    font-size:34px;
  }
}

/* ================================
   TESTIMONIAL GLASS SECTION
================================ */

.testimonial-glass-section{
  position: relative;
  padding: 120px 20px;
  background: radial-gradient(circle at top,#0b1626,#05070c);
  overflow: hidden;
  text-align: center;
}

/* Big background quotes */
.testimonial-bg-quotes .quote{
  position:absolute;
  font-size:220px;
  font-weight:900;
  color:rgba(30,144,255,0.15);
}

.testimonial-bg-quotes .left{
  top:40px;
  left:80px;
}

.testimonial-bg-quotes .right{
  bottom:40px;
  right:80px;
}

/* Glass Card */
.testimonial-glass-card{
  max-width:800px;
  margin:auto;
  padding:70px 60px;
  border-radius:30px;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(15px);
  -webkit-backdrop-filter:blur(15px);
  border:1px solid rgba(255,255,255,0.15);
  box-shadow:0 0 60px rgba(30,144,255,0.15);
}

/* User */
.testimonial-user img{
  width:90px;
  height:90px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:15px;
  border:3px solid #1e90ff;
}

.testimonial-user h4{
  color:#fff;
  font-size:18px;
  font-weight:600;
}

.testimonial-user span{
  color:#9aa5b1;
  font-weight:400;
  font-size:14px;
}

/* Text */
.testimonial-text{
  margin-top:35px;
  font-size:20px;
  line-height:1.8;
  color:#d1d5db;
  font-style:italic;
}

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

@media(max-width:768px){

  .testimonial-bg-quotes .quote{
    font-size:140px;
  }

  .testimonial-glass-card{
    padding:50px 25px;
  }

  .testimonial-text{
    font-size:17px;
  }

  .testimonial-user img{
    width:70px;
    height:70px;
  }

}
/* ===== TESTIMONIAL SLIDER ===== */

.testimonial-slider{
  position:relative;
  max-width:850px;
  margin:auto;
}

.testimonial-glass-card{
  display:none;
  padding:70px 60px;
  border-radius:30px;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(15px);
  border:1px solid rgba(255,255,255,0.15);
  box-shadow:0 0 60px rgba(30,144,255,0.15);
  transition:0.6s ease;
}

.testimonial-glass-card.active{
  display:block;
  animation:fadeSlide 0.8s ease;
}

@keyframes fadeSlide{
  from{opacity:0; transform:translateY(20px);}
  to{opacity:1; transform:translateY(0);}
}
@media(max-width:768px){
  .testimonial-glass-card{
    padding:45px 25px;
  }
  .testimonial-text{
    font-size:17px;
  }
}
