/* ================= ROOT ================= */
:root{
  --primary: #01407E;
  --secondary: #0FA8AC;
  --white: #ffffff;
  --bg: #f5f9fc;
}

/* ================= GLOBAL ================= */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body{
  background: var(--bg);
}

html, body {
  overflow-x: hidden;
  touch-action: pan-y;
}
body.no-scroll {
  overflow: hidden;
  touch-action: none;
}

.nav-menu {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* ================= TOPBAR ================= */
.topbar{
  background: linear-gradient(90deg, var(--primary), #012a55);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
}

.topbar-container{
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar i{
  margin-right: 6px;
  color: var(--secondary);
}

/* ================= NAVBAR ================= */
/* ================= ANIMATED SHIFTING NAVBAR ================= */

.navbar{
  position: sticky;
  top: 0;
  z-index: 999;

  /* animated gradient background */
  background: linear-gradient(
    270deg,
    rgba(255,255,255,0.85),
    rgba(15,168,172,0.10),
    rgba(1,64,126,0.12),
    rgba(255,255,255,0.85)
  );

  background-size: 400% 400%;

  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.06);

  animation: navFlow 10s ease infinite;

  transition: all 0.3s ease;
}

/* smooth moving gradient */
@keyframes navFlow {
  0%{
    background-position: 0% 50%;
  }
  50%{
    background-position: 100% 50%;
  }
  100%{
    background-position: 0% 50%;
  }
}

/* shrink effect on scroll */
.navbar.shrink{
  padding: 4px 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  background-size: 300% 300%;
}

/* ================= CONTAINER ================= */
.nav-container{
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

/* ================= LOGO ================= */
.logo img{
  height: 65px;
  transition: 0.3s ease;
}

.navbar.shrink .logo img{
  height: 40px;
}

/* ================= MENU WRAPPER ================= */
.nav-menu{
  display: flex;
  flex-direction: row;   /* IMPORTANT */
  align-items: center;
  gap: 10px;
  list-style: none;
}

.nav-menu{
  position: fixed;
  top: 0;
  right: -100% !important; /* FORCE HIDE */
  transition: right 0.4s ease;
  z-index: 9999;
}
/* ONLY OPEN WHEN ACTIVE CLASS IS PRESENT */
.nav-menu.active{
  right: 0 !important;
}

/* ================= FLOATING ACTIVE INDICATOR ================= */
.nav-indicator{
  position: absolute;
  height: 38px;
  width: 90px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 30px;

  top: 50%;
  transform: translateY(-50%);
  left: 0;

  transition: all 0.35s ease;
  z-index: 0;
  opacity: 0.9;
}

/* ================= MENU LINKS ================= */
.nav-menu li{
  position: relative;
  z-index: 1;
}

.nav-menu li a{
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;

  padding: 9px 14px;
  border-radius: 30px;

  display: flex;
  align-items: center;
  gap: 6px;

  transition: all 0.25s ease;
  position: relative;
}

/* hover lift (magnetic feel) */
.nav-menu li a:hover{
  transform: translateY(-2px) scale(1.03);
  color: var(--secondary);
}

/* icon micro animation */
.nav-menu li a i{
  font-size: 13px;
  transition: 0.3s ease;
}

.nav-menu li a:hover i{
  transform: rotate(10deg) scale(1.1);
}

/* ACTIVE STATE */
/* ================= ACTIVE MENU (BLUE PREMIUM STYLE) ================= */

.nav-menu li a.active{
  color: var(--primary);
  position: relative;
}

/* animated underline */
.nav-menu li a.active::after{
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;

  height: 2px;
  background: linear-gradient(90deg, #0FA8AC, #01407E);

  border-radius: 10px;

  animation: underlineGlow 1.8s ease-in-out infinite;
}

/* soft glow dot under active */
/*.nav-menu li a.active::before{*/
/*  content: "";*/
/*  position: absolute;*/
/*  bottom: -2px;*/
/*  left: 50%;*/
/*  transform: translateX(-50%);*/

/*  width: 6px;*/
/*  height: 6px;*/
/*  background: #0FA8AC;*/
/*  border-radius: 50%;*/

/*  box-shadow: 0 0 10px rgba(15,168,172,0.8);*/
/*}*/

/* underline animation */
@keyframes underlineGlow{
  0%{
    opacity: 0.5;
    transform: scaleX(0.7);
  }
  50%{
    opacity: 1;
    transform: scaleX(1);
  }
  100%{
    opacity: 0.5;
    transform: scaleX(0.7);
  }
}

/* ================= ORDER BUTTON ================= */
.order-btn{
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white !important;
  padding: 9px 16px;
  border-radius: 30px;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(15,168,172,0.25);
}

.order-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(15,168,172,0.4);
}

/* ================= HAMBURGER ================= */
.hamburger{
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span{
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 5px;
  transition: 0.3s;
}

/* ================= MOBILE ================= */
@media(max-width: 768px){

  .topbar{
    font-size: 12px;
  }

  .top-right{
    display: none;
  }

  .hamburger{
    display: flex;
  }

}


@media(max-width: 768px){

  .nav-menu{
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 75%;
    background: white;

    flex-direction: column;
    padding: 90px 25px;
    gap: 14px;

    box-shadow: -20px 0 40px rgba(0,0,0,0.15);

    transition: right 0.4s ease;

    z-index: 9999;

    /* 🔥 IMPORTANT FIX */
    pointer-events: none;
    visibility: hidden;
  }

  .nav-menu.active{
    right: 0;

    /* 🔥 ENABLE ONLY WHEN OPEN */
    pointer-events: auto;
    visibility: visible;
  }

}

/* ================= SLIDER WRAPPER ================= */
.card-slider{
  width:100%;
  height:560px;

  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;

  background:
    radial-gradient(circle at 20% 30%, rgba(1,64,126,0.05), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(15,168,172,0.05), transparent 50%);
}

/* ================= VIEWPORT ================= */
.viewport{
  width:100%;
  overflow:hidden;

  padding:0 12%;

  box-sizing:border-box;
}

/* ================= TRACK ================= */
.track{
  display:flex;
  gap:24px;

  transition: transform 0.85s cubic-bezier(0.7,0,0.2,1);

  will-change: transform;

  align-items: stretch;
}

/* ================= CARD ================= */
.card{
  flex: 0 0 100%;
  width: 100%;
  height: 500px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:40px;
  border-radius:28px;

  background:#fff;
  overflow:hidden;

  box-shadow:0 15px 40px rgba(0,0,0,0.08);

  transform: scale(0.94);
  opacity: 0.75;

  transition: all 0.6s ease;

  position:relative;
}

/* ACTIVE CARD */
.card.active{
  transform:scale(1);
  opacity:1;

  border:1px solid rgba(15,168,172,0.25);

  background: linear-gradient(
    135deg,
    rgba(1,64,126,0.04),
    rgba(15,168,172,0.06)
  );

  box-shadow:
    0 25px 70px rgba(1,64,126,0.12),
    0 0 40px rgba(15,168,172,0.08);
}

/* ================= LEFT (30%) ================= */
.left{
  width:30%;
  z-index:2;
}

/* ================= RIGHT IMAGE (60%) ================= */
.right{
  width:60%;
  height:100%;

  display:flex;
  align-items:center;
  justify-content:center;

  position:relative;
  overflow:hidden;
}

/* IMAGE */
.right img{
  width:100%;
  max-height:360px;
  object-fit:contain;

  transition:transform 0.6s ease;

  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

/* HOVER IMAGE ZOOM */
.card:hover .right img{
  transform:scale(1.08);
}

/* ================= TAG ================= */
.tag{
  display:inline-block;
  font-size:12px;

  padding:6px 12px;
  border-radius:20px;

  background:rgba(15,168,172,0.12);
  color:var(--primary);

  font-weight:600;
}

/* ================= TITLE ================= */
.left h2{
  font-size:28px;
  color:var(--primary);
  margin-top:12px;
}

/* ================= TEXT ================= */
.left p{
  margin-top:10px;
  color:#555;
  line-height:1.6;
}

/* ================= BUTTONS ================= */
.btns{
  display:flex;
  gap:12px;
  margin-top:18px;
}

/* PRIMARY BUTTON */
.btn.primary{
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color:#fff;

  padding:10px 16px;
  border-radius:30px;

  text-decoration:none;

  box-shadow:0 10px 25px rgba(15,168,172,0.2);

  transition:0.3s;
}

.btn.primary:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(15,168,172,0.25);
}

/* SECONDARY BUTTON */
.btn.ghost{
  border:2px solid var(--primary);
  color:var(--primary);

  padding:10px 16px;
  border-radius:30px;

  text-decoration:none;

  transition:0.3s;
}

.btn.ghost:hover{
  background:rgba(1,64,126,0.08);
}

/* ================= NAV BUTTONS ================= */
.nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);

  width:50px;
  height:50px;

  border:none;
  border-radius:50%;

  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);

  cursor:pointer;
  font-size:22px;

  transition:0.3s;
  z-index:10;
}

.nav:hover{
  background:var(--secondary);
  color:#fff;
}

.prev{ left:15px; }
.next{ right:15px; }

/* ================= MOBILE ================= */
@media(max-width:768px){
  .card{
    flex-direction:column;
    text-align:center;
    height:auto;
    padding:30px;
  }

  .left,.right{
    width:100%;
  }

  .right img{
    max-height:260px;
  }
}

.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;

  font-size:12px;
  padding:8px 14px;
  border-radius:30px;

  background: rgba(15,168,172,0.12);
  color:#01407E;

  font-weight:600;

  backdrop-filter: blur(8px);

  transition: all 0.3s ease;
}

/* ICON STYLE */
.tag i{
  color:#0FA8AC;
  font-size:14px;
}

/* ACTIVE CARD TAG */
.card.active .tag{
  background: linear-gradient(135deg, rgba(15,168,172,0.18), rgba(1,64,126,0.10));
  transform: translateY(-1px);
}


/* ================= MOBILE FIX ================= */
@media (max-width: 768px){

  .card-slider{
    height: auto;
    padding: 20px 0;
  }

  .viewport{
    padding: 0 6%;
  }

  .card{
    flex: 0 0 100%;
    height: auto;

    flex-direction: column;
    text-align: center;

    padding: 25px;
  }

  /* LEFT SIDE FIX */
  .left{
    width: 100%;
  }

  .left h2{
    font-size: 20px;
    line-height: 1.3;
  }

  .left p{
    font-size: 13px;
    line-height: 1.5;
  }

  .tag{
    font-size: 11px;
    padding: 5px 10px;
  }

  .btns{
    justify-content: center;
    flex-wrap: wrap;
  }

  /* RIGHT IMAGE FIX */
  .right{
    width: 100%;
    margin-top: 15px;
  }

  .right img{
    max-width: 240px;
    width: 100%;
    max-height: 220px;

    object-fit: contain;
  }

  /* NAV BUTTONS SMALLER */
  .nav{
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

}


/* ================= WRAPPER ================= */
.trust-marquee{
  width:100%;
  padding:30px 80px;   /* 👈 strong side padding */

  overflow:hidden;

  background: linear-gradient(
    to bottom,
    rgba(246,251,255,1),
    rgba(255,255,255,1)
  );
}

/* ================= TRACK (SMOOTH LOOP) ================= */
.marquee-track{
  display:flex;
  gap:30px;
  width:max-content;

  animation: scrollLoop 20s linear infinite;
}

/* ================= CARD ================= */
.trust-card{
  min-width:320px;   /* 👈 BIG CARD SIZE */
  max-width:320px;

  display:flex;
  align-items:center;
  gap:15px;

  padding:20px 22px;
  border-radius:20px;

  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);

  box-shadow:
    0 15px 35px rgba(0,0,0,0.12),
    0 0 0 1px rgba(15,168,172,0.08);

  border:1px solid rgba(15,168,172,0.1);

  transition: all 0.3s ease;

  flex-shrink:0;
}

/* ICON */
.trust-card i{
  font-size:22px;
  color:#0FA8AC;
}

/* TEXT BLOCK */
.trust-card h4{
  font-size:15px;
  color:#01407E;
  margin:0;
}

.trust-card p{
  font-size:12px;
  color:#666;
  margin-top:3px;
}

/* HOVER EFFECT */
.trust-card:hover{
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 20px 50px rgba(15,168,172,0.18);
}

/* ================= LOOP ANIMATION (NO GAP) ================= */
@keyframes scrollLoop{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}

body.no-scroll{
  overflow: hidden;
}


/* ================= SECTION ================= */
.product-section{
  padding:80px 50px;
  background:#f6fbff;
}

.container{
  max-width:1200px;
  margin:auto;
}

.title{
  text-align:center;
  font-size:32px;
  color:#01407E;
  margin-bottom:40px;
}

/* ================= SLIDER ================= */
.product-slider{
  display:flex;
  gap:25px;

  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:10px;

  scroll-behavior:smooth;
}

.product-slider::-webkit-scrollbar{
  display:none;
}

/* ================= CARD ================= */
.product-card{
  flex:0 0 280px;

  background:white;
  border-radius:20px;

  box-shadow:0 15px 40px rgba(0,0,0,0.08);

  scroll-snap-align:start;

  transition:0.4s;

  overflow:hidden;
}

/* HOVER */
.product-card:hover{
  transform: translateY(-8px) scale(1.03);
  box-shadow:0 25px 60px rgba(15,168,172,0.2);
}

/* IMAGE */
.image-box{
  width:100%;
  height:180px;
  overflow:hidden;
}

.image-box img{
  width:100%;
  height:100%;
  object-fit:cover;

  transition:0.5s;
}

.product-card:hover img{
  transform:scale(1.1);
}

/* CONTENT */
.content{
  padding:15px;
}

.tag{
  font-size:12px;
  background:#e9f7fa;
  color:#0FA8AC;

  padding:4px 10px;
  border-radius:20px;

  display:inline-block;
  margin-bottom:8px;
}

h3{
  font-size:16px;
  color:#01407E;
  margin-bottom:10px;
}

/* LINK */
a{
  text-decoration:none;
  color:#0FA8AC;
  font-weight:600;
  font-size:13px;
}

a:hover{
  color:#01407E;
}

/* ================= DESKTOP RESET ================= */
@media (min-width: 769px) {
  .nav-menu {
    position: static;
    height: auto;
    width: auto;
    flex-direction: row;
    right: auto !important;
    padding: 0;
    box-shadow: none;
  }

  .nav-menu.active {
    right: auto !important;
  }
}

@media (min-width: 769px) {
  .nav-menu {
    display: flex;
    flex-direction: row !important;

    position: static !important;
    height: auto !important;
    width: auto !important;

    margin-left: auto;   /* ⭐ THIS pushes menu to right */
    gap: 10px;
  }
}


/* ================= SECTION ================= */
.titan-product-section{
  padding:80px 50px;
  background:#f6fbff;
}

/* CONTAINER */
.titan-container{
  max-width:1200px;
  margin:auto;
}

/* TITLE */
.titan-title{
  text-align:center;
  font-size:32px;
  color:#01407E;
  margin-bottom:40px;
}

/* ================= SLIDER ================= */

.titan-slider{
  overflow:hidden;
  position:relative;
  padding: 50px;

  /* IMPORTANT: creates soft depth inside */
  mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}


.titan-product-section{
  padding:100px 0;
  background:#f6fbff;

  position:relative;
  overflow:hidden;
}

/* SOFT TOP FADE */
.titan-product-section::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:120px;

  background: linear-gradient(
    to bottom,
    #ffffff,
    transparent
  );

  pointer-events:none;
}

/* SOFT BOTTOM FADE */
.titan-product-section::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:120px;

  background: linear-gradient(
    to top,
    #ffffff,
    transparent
  );

  pointer-events:none;
}

/* TRACK */
.titan-track{
  display:flex;
  gap:25px;
  width:max-content;

  animation: titanScroll 18s linear infinite;
}

/* ================= CARD ================= */
.titan-card{
  width:300px;
  flex-shrink:0;

  background:white;
  border-radius:22px;

  box-shadow:0 20px 50px rgba(0,0,0,0.08);

  position:relative;
  overflow:hidden;

  transition:0.4s;
}

@media (max-width: 768px) {
  .titan-card {
    /*width: 100%;*/
    margin: 0 auto;
  }
}

/* HOVER */
.titan-card:hover{
  transform: translateY(-10px);
  box-shadow:0 30px 70px rgba(15,168,172,0.2);
}



/* ================= GLOW ================= */
.titan-glow{
  position:absolute;
  top:-40px;
  right:-40px;

  width:120px;
  height:120px;

  background: radial-gradient(circle,#0FA8AC,transparent);
  opacity:0.25;
}

/* ================= BADGE ================= */
.titan-badge{
  position:absolute;
  top:12px;
  left:12px;

  background: linear-gradient(135deg,#0FA8AC,#01407E);
  color:white;

  font-size:11px;
  padding:6px 10px;
  border-radius:20px;

  display:flex;
  gap:6px;
  align-items:center;
}

/* ================= IMAGE ================= */
.titan-img{
  width: 100%;
  height: 220px;          /* fixed visual height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fbfd;    /* soft medical background */
  border-radius: 14px;
}

/* actual image fix */
.titan-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;    /* IMPORTANT: keeps full product visible */
  transition: 0.4s ease;
}

/* optional hover zoom */
.titan-card:hover .titan-img img{
  transform: scale(1.05);
}

/* ================= BODY ================= */
.titan-body{
    display: flex;
  flex-direction: column;
  gap: 12px; 
  padding:15px;
}

.titan-tag{
  font-size:12px;
  color:#0FA8AC;
  display:flex;
  gap:6px;
  align-items:center;
}

.titan-body h3{
  font-size:16px;
  color:#01407E;
  margin:8px 0;
}

.titan-body p{
  font-size:13px;
  color:#666;
}

/* BUTTON */
.titan-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 16px;
  border-radius: 12px;

  background: linear-gradient(135deg, #0FA8AC, #01407E);
  color: #fff !important;

  font-weight: 600;
  font-size: 14px;

  text-decoration: none;

  box-shadow: 0 8px 18px rgba(15,168,172,0.25);

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* hover effect */
.titan-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(15,168,172,0.35);
}

/* arrow animation */
.titan-btn i{
  transition: transform 0.3s ease;
}

.titan-btn:hover i{
  transform: translateX(4px);
}

/* subtle shine effect */
.titan-btn::after{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255,255,255,0.25);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.titan-btn:hover::after{
  left: 120%;
}

/* ================= ANIMATION ================= */
@keyframes titanScroll{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}



.focus-section{
  padding:100px 40px;
  background:#f6fbff;
}

/* WRAPPER */
.focus-wrapper{
  max-width:1000px;
  margin:auto;
}

/* HEADER */
.focus-header{
  text-align:center;
  margin-bottom:50px;
}

.focus-header h2{
  font-size:34px;
  color:#01407E;
  margin-bottom:10px;
}

.focus-header p{
  color:#666;
  font-size:15px;
  max-width:700px;
  margin:auto;
}

/* CONTAINER */
.focus-container{
  display:flex;
  flex-direction:column;
  gap:20px;
}

/* ITEM */
.focus-item{
  display:flex;
  gap:20px;
  align-items:center;

  padding:20px;
  border-radius:18px;

  background:white;

  box-shadow:0 10px 30px rgba(0,0,0,0.05);

  opacity:0.4;
  transform:scale(0.98);

  transition:0.3s ease;
}

/* ACTIVE STATE */
.focus-item.active{
  opacity:1;
  transform:scale(1.03);

  border-left:4px solid #0FA8AC;

  box-shadow:0 25px 60px rgba(15,168,172,0.25);
}

/* ICON */
.icon{
  width:55px;
  height:55px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  background:linear-gradient(135deg,#0FA8AC,#01407E);
  color:white;

  flex-shrink:0;
}

/* TEXT */
.text h3{
  margin:0;
  font-size:17px;
  color:#01407E;
}

.text p{
  margin-top:5px;
  font-size:13px;
  color:#666;
  line-height:1.5;
}


/* ================= SECTION ================= */
.cta-simple{
  padding:60px 30px;
  background:#f6fbff;
}

/* ================= MAIN CARD ================= */
.cta-card{
  max-width:1100px;
  margin:auto;

  background:white;

  border-radius:16px;

  box-shadow:0 20px 60px rgba(0,0,0,0.08);

  overflow:hidden;
}

/* ================= MOVING STRIP ================= */
.cta-marquee{
  background: linear-gradient(135deg,#01407E,#0FA8AC);
  overflow:hidden;
  white-space:nowrap;
}

.cta-track{
  display:inline-flex;
  gap:40px;

  padding:12px 0;

  animation: move 12s linear infinite;
}

.cta-track span{
  color:white;
  font-size:13px;

  display:flex;
  align-items:center;
  gap:8px;
}

@keyframes move{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

/* ================= CONTENT ================= */
.cta-content{
  padding:30px;
  text-align:center;
}

.cta-content h2{
  color:#01407E;
  font-size:24px;
  margin-bottom:8px;
}

.cta-content p{
  color:#666;
  font-size:14px;
  max-width:600px;
  margin:auto;
}

/* ================= BUTTONS ================= */
.cta-buttons{
  margin-top:20px;
  display:flex;
  justify-content:center;
  gap:12px;
}

.cta-buttons a{
  text-decoration:none;
  padding:10px 14px;
  border-radius:10px;
  font-weight:600;
  display:flex;
  gap:8px;
  align-items:center;
  transition:0.3s;
}

/* PRIMARY */
.primary{
  background:#0FA8AC;
  color:white;
}

.primary:hover{
  transform:translateY(-2px);
}

/* SECONDARY */
.secondary{
  border:1px solid #0FA8AC;
  color:#0FA8AC;
}

.secondary:hover{
  background:#0FA8AC;
  color:white;
}



/* ================= FOOTER ================= */
.titan-footer{
  position:relative;
  background: linear-gradient(135deg,#01407E,#0FA8AC);
  color:white;

  padding:80px 40px 20px;
  overflow:hidden;
}

/* soft glow animation */
.footer-glow{
  position:absolute;
  width:500px;
  height:500px;

  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);

  top:-150px;
  left:-150px;

  animation: glowMove 8s infinite alternate ease-in-out;
}

@keyframes glowMove{
  0%{ transform:translate(0,0); }
  100%{ transform:translate(120px,80px); }
}

/* ================= CONTAINER ================= */
.footer-container{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap:40px;

  max-width:1200px;
  margin:auto;

  position:relative;
  z-index:2;
}

/* ================= COLUMNS ================= */
.footer-col h3{
  margin-bottom:15px;
  font-size:16px;
}

.footer-col a{
  display:block;
  color:rgba(255,255,255,0.85);
  text-decoration:none;
  margin-bottom:8px;
  font-size:13px;

  transition:0.3s;
}

.footer-col a:hover{
  color:white;
  transform:translateX(5px);
}

/* brand */
.footer-col.brand p{
  font-size:13px;
  opacity:0.9;
  line-height:1.6;
}

/* contact */
.footer-col p{
  font-size:13px;
  margin-bottom:8px;
}

/* social icons */
.social{
  margin-top:10px;
  display:flex;
  gap:12px;
}

.social i{
  width:35px;
  height:35px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(255,255,255,0.15);
  border-radius:50%;

  cursor:pointer;

  transition:0.3s;
}

.social i:hover{
  background:white;
  color:#01407E;
  transform:translateY(-3px);
}

/* ================= BOTTOM ================= */
.footer-bottom{
  text-align:center;
  margin-top:50px;
  padding-top:15px;

  border-top:1px solid rgba(255,255,255,0.2);

  font-size:12px;
  opacity:0.8;
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .social{
    justify-content:center;
  }
}


/* ================= FOOTER BASE ================= */
.future-footer{
  background: linear-gradient(135deg,#01407E,#0FA8AC);
  color:white;

  padding:70px 40px 20px;

  overflow:hidden;
  position:relative;
}

/* soft premium glow */
.future-footer::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;

  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 60%);

  top:-150px;
  left:-150px;

  animation: glowMove 10s infinite alternate ease-in-out;
}

@keyframes glowMove{
  0%{ transform:translate(0,0); }
  100%{ transform:translate(80px,60px); }
}

/* ================= MAIN LAYOUT ================= */
.future-container{
  max-width:1200px;
  margin:auto;

  display:grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;

  gap:40px;

  position:relative;
  z-index:2;
}

/* ================= BRAND ================= */
.f-brand img{
  width:140px;
  margin-bottom:15px;
  transition:0.3s;
}

.f-brand img:hover{
  transform:scale(1.05);
}

.f-brand p{
  font-size:13px;
  line-height:1.6;
  opacity:0.9;
  max-width:300px;
}

/* ================= ACTION LINKS ================= */
.f-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.f-actions a{
  display:flex;
  align-items:center;
  gap:10px;

  padding:10px 12px;

  background: rgba(255,255,255,0.08);
  border-radius:10px;

  color:white;
  text-decoration:none;

  font-size:13px;

  transition:0.3s ease;
}

/* hover feel premium */
.f-actions a:hover{
  transform: translateX(6px);
  background: rgba(255,255,255,0.18);
}

/* icon polish */
.f-actions i{
  color:#ffffff;
  opacity:0.9;
}

/* ================= CONTACT CHIPS ================= */
.f-contact{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.chip{
  display:flex;
  align-items:center;
  gap:10px;

  padding:10px 12px;

  background: rgba(255,255,255,0.08);
  border-radius:30px;

  font-size:13px;

  transition:0.3s;
}

.chip:hover{
  background: rgba(255,255,255,0.18);
  transform: translateX(5px);
}

/* ================= TICKER ================= */
.footer-ticker{
  margin-top:40px;
  overflow:hidden;

  border-top:1px solid rgba(255,255,255,0.2);
  padding-top:10px;
}

.ticker-track{
  display:inline-flex;
  gap:35px;

  white-space:nowrap;

  animation: tickerMove 14s linear infinite;
}

.ticker-track span{
  font-size:12px;
  opacity:0.9;
}

/* smooth infinite scroll */
@keyframes tickerMove{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .future-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .f-actions, .f-contact{
    align-items:center;
  }

  .f-brand p{
    margin:auto;
  }
}


/* ================= SECTION ================= */
.about-grid-section{
  padding:100px 40px;
  background:#f6fbff;
}

/* ================= CONTAINER ================= */
.about-grid-container{
  max-width:1200px;
  margin:auto;

  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:60px;

  align-items:center;
}

/* ================= LEFT IMAGE GRID ================= */
.about-images{
  /*display:grid;*/
  grid-template-columns:1fr 1fr;
  gap:15px;
}

.img-box{
  position:relative;
  border-radius:14px;
  overflow:hidden;

  height:500px;

  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.img-box img{
  width:100%;
  height:100%;
  object-fit:cover;

  transition:0.4s;
}

/* hover zoom */
.img-box:hover img{
  transform:scale(1.08);
}

/* label */
.img-box span{
  position:absolute;
  bottom:10px;
  left:10px;

  background:rgba(255,255,255,0.9);
  color:#01407E;

  font-size:11px;

  padding:4px 8px;
  border-radius:20px;
  font-weight:600;
}

/* ================= RIGHT CONTENT ================= */
.sub-title{
  color:#0FA8AC;
  font-weight:600;
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:10px;
}

.about-content h2{
  font-size:34px;
  color:#01407E;
  margin-bottom:15px;
}

.about-content h2 span{
  color:#0FA8AC;
}

.desc{
  font-size:14px;
  color:#555;
  line-height:1.7;
  margin-bottom:20px;
}

/* ================= BLOCKS ================= */
.about-blocks{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
  margin-bottom:20px;
}

.block{
  background:white;
  padding:15px;

  border-radius:12px;

  box-shadow:0 10px 25px rgba(0,0,0,0.05);

  transition:0.3s;
}

.block:hover{
  transform:translateY(-4px);
}

.block h3{
  font-size:14px;
  color:#01407E;
  margin-bottom:5px;
}

.block p{
  font-size:12px;
  color:#666;
}

/* ================= LIST ================= */
.about-list{
  list-style:none;
  padding:0;
  margin:15px 0;
}

.about-list li{
  display:flex;
  align-items:center;
  gap:8px;

  font-size:13px;
  color:#333;

  margin-bottom:8px;
}

.about-list i{
  color:#0FA8AC;
}

/* ================= BUTTON ================= */
.about-btn{
  display:inline-block;

  padding:10px 16px;

  background:#0FA8AC;
  color:white;

  border-radius:10px;

  text-decoration:none;

  transition:0.3s;
}

.about-btn:hover{
  background:#01407E;
  transform:translateY(-2px);
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .about-grid-container{
    grid-template-columns:1fr;
  }

  .about-blocks{
    grid-template-columns:1fr;
  }
}


/* ================= CONTACT HERO (COMPACT) ================= */
.contact-hero{
  position: relative;
  padding: 70px 20px;   /* 🔥 reduced height */
  overflow: hidden;
  background: linear-gradient(135deg, #01407E, #0FA8AC);
}

/* background wrapper */
.contact-hero__bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* floating icons */
.contact-hero__bg .icon{
  position: absolute;
  font-size: 24px;
  color: rgba(255,255,255,0.15);
  animation: floatIcon 6s infinite ease-in-out;
}

/* positions */
.icon-1{ top: 12%; left: 10%; }
.icon-2{ top: 18%; right: 12%; animation-delay: 1s; }
.icon-3{ bottom: 18%; left: 18%; animation-delay: 2s; }
.icon-4{ bottom: 15%; right: 20%; animation-delay: 3s; }

/* animation */
@keyframes floatIcon{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-15px); }
}

/* container */
.contact-hero__container{
  position: relative;
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: center;
}

/* glass card */
.contact-hero__card{
  width: 100%;
  max-width: 720px;
  text-align: center;

  padding: 35px 25px;   /* 🔥 reduced padding */
  border-radius: 18px;

  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.18);

  box-shadow: 0 20px 50px rgba(0,0,0,0.15);

  animation: fadeUp 0.8s ease;
}

/* title */
.contact-hero__title{
  font-size: 34px;   /* slightly smaller */
  color: #fff;
  margin-bottom: 10px;
}

/* text */
.contact-hero__desc{
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* buttons */
.contact-hero__actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* base button */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;
  border-radius: 30px;

  text-decoration: none;
  font-weight: 600;
  font-size: 13px;

  transition: 0.3s ease;
}

/* phone */
.btn--call{
  background: #ffffff;
  color: #01407E;
}

.btn--call:hover{
  transform: translateY(-3px);
}

/* email */
.btn--email{
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn--email:hover{
  background: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

/* address */
.btn--address{
  background: #0FA8AC;
  color: #fff;
}

.btn--address:hover{
  background: #0c8f92;
  transform: translateY(-3px);
}

/* animation */
@keyframes fadeUp{
  from{
    opacity: 0;
    transform: translateY(15px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* mobile */
@media(max-width:768px){
  .contact-hero{
    padding: 55px 15px;
  }

  .contact-hero__title{
    font-size: 26px;
  }

  .contact-hero__card{
    padding: 25px 18px;
  }
}

/* ================= CONTACT CARDS SECTION ================= */
.contact-cards{
  padding: 70px 20px;
  background: #f6fbff;
  position: relative;
  overflow: hidden;
}

/* container */
.contact-cards__container{
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ================= CARD BASE ================= */
.contact-card{
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(1,64,126,0.08);
  border-radius: 18px;

  padding: 30px 20px;
  text-align: center;

  box-shadow: 0 15px 40px rgba(0,0,0,0.06);

  transition: all 0.4s ease;

  position: relative;

  animation: floatIn 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

/* stagger animation */
.card-1{ animation-delay: 0.1s; }
.card-2{ animation-delay: 0.3s; }
.card-3{ animation-delay: 0.5s; }

/* hover glow + lift */
.contact-card:hover{
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 60px rgba(15,168,172,0.25);
  border-color: rgba(15,168,172,0.3);
}

/* icon container */
.contact-card__icon{
  width: 65px;
  height: 65px;

  margin: auto;
  margin-bottom: 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg, #0FA8AC, #01407E);

  color: white;
  font-size: 22px;

  animation: pulse 2.5s infinite;
}

/* title */
.contact-card h3{
  font-size: 18px;
  color: #01407E;
  margin-bottom: 10px;
}

/* text */
.contact-card p{
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* link button */
.contact-card a{
  display: inline-block;
  padding: 8px 14px;

  border-radius: 25px;

  font-size: 13px;
  font-weight: 600;

  text-decoration: none;

  color: #0FA8AC;
  border: 1px solid rgba(15,168,172,0.3);

  transition: 0.3s ease;
}

/* hover button */
.contact-card a:hover{
  background: #0FA8AC;
  color: white;
  transform: translateY(-2px);
}

/* ================= ANIMATIONS ================= */

/* entry animation */
@keyframes floatIn{
  from{
    opacity: 0;
    transform: translateY(40px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* icon pulse */
@keyframes pulse{
  0%{
    box-shadow: 0 0 0 0 rgba(15,168,172,0.4);
  }
  70%{
    box-shadow: 0 0 0 15px rgba(15,168,172,0);
  }
  100%{
    box-shadow: 0 0 0 0 rgba(15,168,172,0);
  }
}

/* ================= RESPONSIVE ================= */
@media(max-width: 768px){
  .contact-cards__container{
    grid-template-columns: 1fr;
  }

  .contact-card{
    padding: 25px 18px;
  }
}

/* ================= CONTACT V2 WRAPPER ================= */
.tcx-contact-wrap{
  padding: 80px 20px;
  background: #f6fbff;
}

/* grid layout */
.tcx-contact-grid{
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 25px;
}

/* ================= FORM CARD ================= */
.tcx-form-card{
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);

  padding: 32px 26px;
  border-radius: 18px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.08);

  animation: tcxLeft 0.8s ease;
}

/* title */
.tcx-form-title{
  font-size: 26px;
  color: #01407E;
  margin-bottom: 6px;
}

.tcx-form-subtitle{
  font-size: 13px;
  color: #666;
  margin-bottom: 18px;
}

/* ================= FORM ================= */
.tcx-form{
  display: flex;
  flex-direction: column;
}

/* field */
.tcx-field{
  position: relative;
  margin-bottom: 16px;
}

/* inputs */
.tcx-field input,
.tcx-field select,
.tcx-field textarea{
  width: 100%;
  padding: 14px 12px;

  border: 1px solid rgba(1,64,126,0.15);
  border-radius: 10px;

  background: transparent;

  font-size: 14px;
  outline: none;

  transition: 0.3s ease;
}

/* textarea */
.tcx-textarea textarea{
  height: 120px;
  resize: none;
}

/* focus */
.tcx-field input:focus,
.tcx-field select:focus,
.tcx-field textarea:focus{
  border-color: #0FA8AC;
  box-shadow: 0 0 0 3px rgba(15,168,172,0.15);
}

/* floating label */
.tcx-field label{
  position: absolute;
  top: 50%;
  left: 12px;

  transform: translateY(-50%);

  font-size: 13px;
  color: #888;

  pointer-events: none;

  transition: 0.3s ease;
  background: transparent;
}

/* float effect */
.tcx-field input:focus + label,
.tcx-field input:valid + label,
.tcx-field textarea:focus + label,
.tcx-field textarea:valid + label{
  top: -8px;
  font-size: 11px;
  color: #0FA8AC;
  background: white;
  padding: 0 6px;
  border-radius: 4px;
}

/* ================= BUTTON ================= */
.tcx-btn{
  padding: 14px;
  border: none;

  border-radius: 12px;

  background: linear-gradient(135deg,#0FA8AC,#01407E);
  color: #fff;

  font-weight: 600;
  font-size: 15px;

  cursor: pointer;

  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tcx-btn:hover{
  transform: translateY(-3px);
}

/* shine */
.tcx-btn::after{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;

  width: 60%;
  height: 100%;

  background: rgba(255,255,255,0.25);
  transform: skewX(-25deg);

  transition: 0.5s;
}

.tcx-btn:hover::after{
  left: 120%;
}

/* ================= MAP SIDE ================= */
.tcx-map-card{
  display: flex;
  flex-direction: column;
  gap: 15px;

  animation: tcxRight 0.8s ease;
}

/* map */
.tcx-map-frame{
  border-radius: 18px;
  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.tcx-map-frame iframe{
  width: 100%;
  height: 260px;
  border: none;
}

/* info list */
.tcx-info-list{
  display: grid;
  gap: 12px;
}

/* item */
.tcx-info-item{
  display: flex;
  align-items: center;
  gap: 10px;

  background: #fff;
  padding: 14px;

  border-radius: 12px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);

  transition: 0.3s ease;
}

.tcx-info-item i{
  color: #0FA8AC;
  font-size: 16px;
}

.tcx-info-item p{
  font-size: 13px;
  color: #666;
}

/* hover */
.tcx-info-item:hover{
  transform: translateY(-4px);
}

/* highlight */
.tcx-highlight{
  border-left: 4px solid #0FA8AC;
  background: linear-gradient(135deg,#fff,#f0fbfc);
}

/* ================= ANIMATION ================= */
@keyframes tcxLeft{
  from{ opacity:0; transform: translateX(-30px); }
  to{ opacity:1; transform: translateX(0); }
}

@keyframes tcxRight{
  from{ opacity:0; transform: translateX(30px); }
  to{ opacity:1; transform: translateX(0); }
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .tcx-contact-grid{
    grid-template-columns: 1fr;
  }

  .tcx-map-frame iframe{
    height: 220px;
  }
}

/* ================= CTA SECTION ================= */
.tcx-cta{
  padding: 80px 20px;
  background: linear-gradient(135deg,#01407E,#0FA8AC);
  position: relative;
  overflow: hidden;
}

/* container */
.tcx-cta-container{
  max-width: 900px;
  margin: auto;
  position: relative;
}

/* background icons */
.tcx-cta-bg .icon{
  position: absolute;
  font-size: 28px;
  color: rgba(255,255,255,0.12);
  animation: float 6s infinite ease-in-out;
}

.i1{ top: 10%; left: 10%; }
.i2{ top: 30%; right: 15%; animation-delay: 1s; }
.i3{ bottom: 20%; left: 20%; animation-delay: 2s; }

@keyframes float{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-18px); }
}

/* CTA box */
.tcx-cta-box{
  text-align: center;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;

  padding: 45px 25px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.15);

  animation: fadeUp 0.8s ease;
}

/* title */
.tcx-cta-box h2{
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
}

/* text */
.tcx-cta-box p{
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

/* buttons */
.tcx-cta-buttons{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* primary */
.btn-primary{
  background: #fff;
  color: #01407E;

  padding: 12px 16px;
  border-radius: 30px;

  text-decoration: none;
  font-weight: 600;

  transition: 0.3s ease;
}

.btn-primary:hover{
  transform: translateY(-3px);
}

/* secondary */
.btn-secondary{
  background: rgba(255,255,255,0.15);
  color: #fff;

  padding: 12px 16px;
  border-radius: 30px;

  border: 1px solid rgba(255,255,255,0.3);

  text-decoration: none;
  font-weight: 600;

  transition: 0.3s ease;
}

.btn-secondary:hover{
  background: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

/* badges */
.tcx-cta-badges{
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.tcx-cta-badges span{
  font-size: 12px;
  color: #fff;

  background: rgba(255,255,255,0.12);
  padding: 6px 10px;

  border-radius: 20px;

  display: flex;
  align-items: center;
  gap: 6px;
}

/* fade animation */
@keyframes fadeUp{
  from{
    opacity: 0;
    transform: translateY(20px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* responsive */
@media(max-width:768px){
  .tcx-cta-box h2{
    font-size: 22px;
  }
}

/* ================= ORDER HERO ================= */
.ord-hero{
  padding: 90px 20px;
  background: linear-gradient(135deg,#01407E,#0FA8AC);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: white;
}

/* floating icons */
.ord-hero__bg .icon{
  position: absolute;
  font-size: 28px;
  color: rgba(255,255,255,0.15);
  animation: floatUp 6s infinite ease-in-out;
}

.i1{ top: 15%; left: 10%; }
.i2{ top: 25%; right: 15%; animation-delay: 1s; }
.i3{ bottom: 20%; left: 20%; animation-delay: 2s; }

@keyframes floatUp{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-18px); }
}

/* content animation */
.ord-hero__content{
  max-width: 800px;
  margin: auto;
  animation: fadeUp 1s ease;
}

.ord-hero h1{
  font-size: 38px;
  margin-bottom: 10px;
}

.ord-hero p{
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* buttons */
.ord-hero__btns{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary{
  padding: 12px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary{
  background: white;
  color: #01407E;
}

.btn-secondary{
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-primary:hover,
.btn-secondary:hover{
  transform: translateY(-3px);
}

@keyframes fadeUp{
  from{ opacity: 0; transform: translateY(20px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* ================= ORDER FORM ================= */
.ord-form{
  padding: 80px 20px;
  background: #f6fbff;
}

.ord-form__box{
  max-width: 600px;
  margin: auto;

  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(14px);

  padding: 30px;
  border-radius: 18px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.08);

  animation: fadeUp 1s ease;
}

.ord-form__box h2{
  text-align: center;
  margin-bottom: 20px;
  color: #01407E;
}

.ord-form input,
.ord-form select,
.ord-form textarea{
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;

  border: 1px solid #ddd;
  border-radius: 10px;

  outline: none;
  transition: 0.3s;
}

.ord-form input:focus,
.ord-form select:focus,
.ord-form textarea:focus{
  border-color: #0FA8AC;
  box-shadow: 0 0 0 3px rgba(15,168,172,0.15);
}

.ord-form textarea{
  height: 100px;
  resize: none;
}

.ord-form button{
  width: 100%;
  padding: 14px;

  background: linear-gradient(135deg,#0FA8AC,#01407E);
  color: white;

  border: none;
  border-radius: 12px;

  font-weight: 600;
  cursor: pointer;

  transition: 0.3s;
}

.ord-form button:hover{
  transform: translateY(-3px);
}

/* ================= PROCESS ================= */
.ord-process{
  padding: 80px 20px;
  text-align: center;
  background: white;
}

.ord-process h2{
  color: #01407E;
  margin-bottom: 30px;
}

.ord-process__grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 15px;
}

.step{
  padding: 20px;
  background: #f6fbff;
  border-radius: 12px;

  transition: 0.3s;
}

.step:hover{
  transform: translateY(-5px);
  background: #eaf8fb;
}

@media(max-width:768px){
  .ord-process__grid{
    grid-template-columns: 1fr;
  }
}

/* ================= CTA ================= */
.ord-cta{
  padding: 80px 20px;
  text-align: center;

  background: linear-gradient(135deg,#01407E,#0FA8AC);
  color: white;
}

.ord-cta h2{
  font-size: 30px;
  margin-bottom: 10px;
}

.ord-cta p{
  margin-bottom: 20px;
  opacity: 0.9;
}

.ord-cta a{
  padding: 12px 18px;
  background: white;
  color: #01407E;

  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;

  transition: 0.3s;
}

.ord-cta a:hover{
  transform: translateY(-3px);
}

/* ================= GRID FORM SYSTEM ================= */
.ord-grid-form{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* section title */
.ord-section-title{
  font-size: 15px;
  color: #01407E;
  margin-top: 10px;
  font-weight: 600;
}

/* row system (like Bootstrap row) */
.ord-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* column (like col-md-6) */
.ord-col{
  flex: 1;
  min-width: calc(50% - 6px);
}

/* full width column */
.ord-col.full{
  min-width: 100%;
}

/* inputs */
.ord-grid-form input,
.ord-grid-form select,
.ord-grid-form textarea{
  width: 100%;
  padding: 12px;

  border: 1px solid #ddd;
  border-radius: 10px;

  outline: none;
  font-size: 14px;

  transition: 0.3s ease;
}

/* focus */
.ord-grid-form input:focus,
.ord-grid-form select:focus,
.ord-grid-form textarea:focus{
  border-color: #0FA8AC;
  box-shadow: 0 0 0 3px rgba(15,168,172,0.15);
}

/* textarea */
.ord-grid-form textarea{
  height: 100px;
  resize: none;
}

/* submit button */
.ord-submit-btn{
  margin-top: 15px;
  padding: 14px;

  background: linear-gradient(135deg,#0FA8AC,#01407E);
  color: white;

  border: none;
  border-radius: 12px;

  font-weight: 600;
  cursor: pointer;

  transition: 0.3s ease;
}

.ord-submit-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(15,168,172,0.25);
}

/* ================= MOBILE FIX ================= */
@media(max-width:768px){
  .ord-col{
    min-width: 100%;
  }
}


/* ================= HOW IT WORKS SECTION ================= */
.tcx-how{
  padding: 80px 20px;
  background: #f6fbff;
  text-align: center;
}

/* container */
.tcx-how-container{
  max-width: 1100px;
  margin: auto;
}

/* title */
.tcx-how-title{
  font-size: 32px;
  color: #01407E;
  margin-bottom: 10px;
}

/* subtitle */
.tcx-how-subtitle{
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}

/* ================= GRID ================= */
.tcx-how-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ================= CARD BASE ================= */
.tcx-how-step{
  background: white;
  padding: 25px 18px;

  border-radius: 16px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);

  position: relative;

  transition: 0.4s ease;

  /* FLOATING ANIMATION */
  animation: floatCard 8s ease-in-out infinite;
}

/* stagger delays */
.tcx-how-step:nth-child(1){ animation-delay: 0s; }
.tcx-how-step:nth-child(2){ animation-delay: 1s; }
.tcx-how-step:nth-child(3){ animation-delay: 2s; }
.tcx-how-step:nth-child(4){ animation-delay: 3s; }

/* ================= ICON ================= */
.tcx-icon{
  width: 60px;
  height: 60px;

  margin: auto;
  margin-bottom: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg,#0FA8AC,#01407E);

  color: white;
  font-size: 20px;

  animation: pulse 2.5s infinite;
}

/* ================= TEXT ================= */
.tcx-how-step h3{
  font-size: 16px;
  color: #01407E;
  margin-bottom: 8px;
}

.tcx-how-step p{
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* ================= HOVER EFFECT ================= */
.tcx-how-step:hover{
  transform: translateY(-10px) scale(1.05);

  box-shadow: 0 20px 50px rgba(15,168,172,0.18);

  /* STOP ANIMATION ON HOVER */
  animation-play-state: paused;
}

/* ================= FLOATING ANIMATION ================= */
@keyframes floatCard{
  0%{
    transform: translate(0px, 0px);
  }

  25%{
    transform: translate(8px, -10px); /* right + up */
  }

  50%{
    transform: translate(-6px, -6px); /* left + up */
  }

  75%{
    transform: translate(-10px, 6px); /* left + down */
  }

  100%{
    transform: translate(0px, 0px); /* back */
  }
}

/* ================= ICON PULSE ================= */
@keyframes pulse{
  0%{
    box-shadow: 0 0 0 0 rgba(15,168,172,0.4);
  }

  70%{
    box-shadow: 0 0 0 15px rgba(15,168,172,0);
  }

  100%{
    box-shadow: 0 0 0 0 rgba(15,168,172,0);
  }
}

/* ================= RESPONSIVE ================= */
@media(max-width: 768px){
  .tcx-how-grid{
    grid-template-columns: 1fr;
  }
}

/* ================= ABOUT HERO ================= */
.abt-hero{
  padding: 90px 20px;
  background: linear-gradient(135deg,#01407E,#0FA8AC);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: white;
}

/* floating icons */
.abt-hero__bg .icon{
  position: absolute;
  font-size: 28px;
  color: rgba(255,255,255,0.15);
  animation: abtFloat 6s infinite ease-in-out;
}

.i1{ top: 15%; left: 10%; }
.i2{ top: 25%; right: 15%; animation-delay: 1s; }
.i3{ bottom: 20%; left: 20%; animation-delay: 2s; }

/* container */
.abt-hero__container{
  max-width: 850px;
  margin: auto;
}

/* glass card */
.abt-hero__card{
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;

  padding: 45px 25px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.15);

  animation: fadeUp 1s ease;
}

/* title */
.abt-hero__card h1{
  font-size: 36px;
  margin-bottom: 10px;
}

/* text */
.abt-hero__card p{
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* buttons */
.abt-hero__actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* buttons reuse style */
.btn-primary,
.btn-secondary{
  padding: 12px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary{
  background: white;
  color: #01407E;
}

.btn-secondary{
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-primary:hover,
.btn-secondary:hover{
  transform: translateY(-3px);
}

/* animations */
@keyframes abtFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-18px); }
}

@keyframes fadeUp{
  from{ opacity: 0; transform: translateY(20px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* responsive */
@media(max-width:768px){
  .abt-hero__card h1{
    font-size: 26px;
  }
}

/* ================= ABOUT STORY ================= */
.abt-story{
  padding: 80px 20px;
  background: #f6fbff;
}

/* container */
.abt-story__container{
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
}

/* LEFT TEXT */
.abt-story__text{
  animation: slideLeft 0.8s ease;
}

.abt-story__text h2{
  font-size: 30px;
  color: #01407E;
  margin-bottom: 15px;
}

.abt-story__text p{
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* RIGHT CARD */
.abt-story__card{
  background: white;

  padding: 25px;

  border-radius: 18px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.08);

  animation: slideRight 0.8s ease;

  transition: 0.3s;
}

.abt-story__card:hover{
  transform: translateY(-8px);
}

/* icon */
.story-icon{
  width: 60px;
  height: 60px;

  margin: auto;
  margin-bottom: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg,#0FA8AC,#01407E);

  color: white;
  font-size: 22px;

  animation: pulse 2.5s infinite;
}

/* title */
.abt-story__card h3{
  text-align: center;
  color: #01407E;
  margin-bottom: 10px;
}

/* list */
.abt-story__card ul{
  list-style: none;
  padding: 0;
}

.abt-story__card li{
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

/* ================= ANIMATIONS ================= */
@keyframes slideLeft{
  from{ opacity:0; transform: translateX(-30px); }
  to{ opacity:1; transform: translateX(0); }
}

@keyframes slideRight{
  from{ opacity:0; transform: translateX(30px); }
  to{ opacity:1; transform: translateX(0); }
}

/* pulse */
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(15,168,172,0.4); }
  70%{ box-shadow: 0 0 0 15px rgba(15,168,172,0); }
  100%{ box-shadow: 0 0 0 0 rgba(15,168,172,0); }
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .abt-story__container{
    grid-template-columns: 1fr;
  }
}

/* ================= BEAUTIFUL ABOUT SECTION ================= */
.abt-beauty{
  padding: 80px 20px;
  background: #f6fbff;
  text-align: center;
}

/* container */
.abt-beauty__container{
  max-width: 1000px;
  margin: auto;
}

/* header */
.abt-beauty__header h2{
  font-size: 32px;
  color: #01407E;
  margin-bottom: 10px;
}

.abt-beauty__header p{
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}

/* grid */
.abt-beauty__grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

/* card */
.abt-card{
  background: white;

  padding: 25px;

  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);

  transition: 0.4s ease;

  position: relative;

  overflow: hidden;

  animation: fadeUp 0.8s ease;
}

/* hover effect */
.abt-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(15,168,172,0.18);
}

/* icon */
.abt-card i{
  font-size: 26px;
  color: #0FA8AC;
  margin-bottom: 10px;
}

/* title */
.abt-card h3{
  font-size: 18px;
  color: #01407E;
  margin-bottom: 8px;
}

/* text */
.abt-card p{
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* animation */
@keyframes fadeUp{
  from{
    opacity: 0;
    transform: translateY(20px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* responsive */
@media(max-width:768px){
  .abt-beauty__grid{
    grid-template-columns: 1fr;
  }
}


/* ================= OUTER SECTION ================= */
.abt-hover-story{
  padding: 80px 20px;
  background: #ffffff;
}

/* ================= CONTAINER ================= */
.abt-hover-container{
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;

  align-items: center;
}

/* ================= LEFT IMAGE BOX ================= */
.abt-hover-image{
  position: relative;

  height: 420px;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* images */
.abt-hover-image img{
  position: absolute;
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* default image */
.img-default{
  opacity: 1;
}

/* hover image */
.img-hover{
  opacity: 0;
}

/* hover swap effect */
.abt-hover-image:hover .img-default{
  opacity: 0;
  transform: scale(1.05);
}

.abt-hover-image:hover .img-hover{
  opacity: 1;
  transform: scale(1.05);
}

/* ================= RIGHT CONTENT ================= */
.abt-hover-content{
  animation: fadeRight 0.8s ease;
}

/* badge */
.brand-badge{
  display: inline-block;

  font-size: 12px;

  padding: 6px 10px;

  border-radius: 20px;

  background: rgba(15,168,172,0.08);

  color: #0FA8AC;

  font-weight: 600;

  margin-bottom: 12px;
}

/* heading */
.abt-hover-content h2{
  font-size: 30px;
  color: #01407E;
  margin-bottom: 12px;
}

/* paragraph */
.abt-hover-content p{
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* ================= FEATURE CARDS ================= */
.abt-feature-list{
  display: flex;
  flex-direction: column;
  gap: 12px;

  margin-top: 15px;
}

.abt-feature{
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 16px;

  background: #ffffff;

  border-radius: 14px;

  border: 1px solid rgba(1,64,126,0.08);

  box-shadow: 0 6px 18px rgba(0,0,0,0.04);

  transition: 0.3s ease;
}

/* icon */
.abt-feature i{
  color: #0FA8AC;
  font-size: 16px;
}

/* text */
.abt-feature span{
  font-size: 13px;
  color: #333;
}

/* hover */
.abt-feature:hover{
  transform: translateX(6px);

  border-color: rgba(15,168,172,0.25);

  box-shadow: 0 12px 30px rgba(15,168,172,0.10);
}

/* ================= CTA BUTTON ================= */
.abt-modern-cta{
  display: inline-block;

  margin-top: 18px;

  padding: 12px 18px;

  border-radius: 30px;

  background: linear-gradient(135deg,#0FA8AC,#01407E);

  color: #fff;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s ease;

  box-shadow: 0 10px 25px rgba(15,168,172,0.15);
}

.abt-modern-cta:hover{
  transform: translateY(-3px);

  box-shadow: 0 15px 35px rgba(15,168,172,0.25);
}

/* ================= ANIMATION ================= */
@keyframes fadeRight{
  from{
    opacity: 0;
    transform: translateX(30px);
  }
  to{
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .abt-hover-container{
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .abt-hover-image{
    height: 280px;
  }
}

/* ================= MISSION VISION VALUES ================= */
.abt-mvv{
  padding: 80px 20px;
  background: #f6fbff;
  text-align: center;
}

/* container */
.abt-mvv__container{
  max-width: 1100px;
  margin: auto;
}

/* heading */
.abt-mvv__container h2{
  font-size: 30px;
  color: #01407E;
  margin-bottom: 10px;
}

.abt-mvv__container p{
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}

/* grid */
.abt-mvv__grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

/* card */
.abt-mvv-card{
  background: white;

  padding: 25px;

  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);

  transition: 0.4s ease;

  position: relative;

  overflow: hidden;

  animation: mvvFade 0.8s ease;
}

/* hover */
.abt-mvv-card:hover{
  transform: translateY(-10px);

  box-shadow: 0 20px 50px rgba(15,168,172,0.18);
}

/* icon */
.abt-mvv-card i{
  font-size: 26px;
  color: #0FA8AC;
  margin-bottom: 10px;
}

/* title */
.abt-mvv-card h3{
  font-size: 18px;
  color: #01407E;
  margin-bottom: 8px;
}

/* text */
.abt-mvv-card p{
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* animation */
@keyframes mvvFade{
  from{
    opacity: 0;
    transform: translateY(20px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* responsive */
@media(max-width:768px){
  .abt-mvv__grid{
    grid-template-columns: 1fr;
  }
}

/* ================= WHY CHOOSE US ================= */
.abt-why{
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

/* container */
.abt-why__container{
  max-width: 1100px;
  margin: auto;
}

/* heading */
.abt-why__container h2{
  font-size: 30px;
  color: #01407E;
  margin-bottom: 10px;
}

.abt-why__container p{
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}

/* grid */
.abt-why__grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

/* card */
.abt-why-card{
  background: #fff;

  padding: 22px;

  border-radius: 18px;

  border: 1px solid rgba(1,64,126,0.08);

  box-shadow: 0 8px 20px rgba(0,0,0,0.04);

  transition: 0.4s ease;

  position: relative;

  overflow: hidden;

  animation: whyFade 0.8s ease;
}

/* hover effect */
.abt-why-card:hover{
  transform: translateY(-10px);

  box-shadow: 0 20px 50px rgba(15,168,172,0.15);

  border-color: rgba(15,168,172,0.25);
}

/* icon */
.abt-why-card i{
  font-size: 24px;
  color: #0FA8AC;
  margin-bottom: 10px;
}

/* title */
.abt-why-card h3{
  font-size: 17px;
  color: #01407E;
  margin-bottom: 8px;
}

/* text */
.abt-why-card p{
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* animation */
@keyframes whyFade{
  from{
    opacity: 0;
    transform: translateY(20px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* responsive */
@media(max-width:768px){
  .abt-why__grid{
    grid-template-columns: 1fr;
  }
}


/* ================= OUTER SECTION ================= */
.abt-flow{
  padding: 80px 20px;
  background: #f4f9ff;
  text-align: center;
}

/* container */
.abt-flow__container{
  max-width: 1100px;
  margin: auto;
}

/* heading */
.abt-flow__container h2{
  font-size: 32px;
  color: #01407E;
  margin-bottom: 10px;
}

.abt-flow__container p{
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}

/* ================= TRACK (HORIZONTAL FLOW) ================= */
.abt-flow__track{
  display: flex;
  justify-content: center;
  gap: 20px;

  align-items: center;
}

/* ================= CARD BASE ================= */
.flow-card{
  width: 320px;

  background: white;

  padding: 25px;

  border-radius: 18px;

  border: 1px solid rgba(1,64,126,0.08);

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);

  transition: 0.4s ease;

  position: relative;

  animation: floatX 6s ease-in-out infinite;
}

/* ICON */
.flow-card i{
  font-size: 22px;
  color: #0FA8AC;
  margin-bottom: 10px;
}

/* TITLE */
.flow-card h3{
  font-size: 18px;
  color: #01407E;
  margin-bottom: 8px;
}

/* TEXT */
.flow-card p{
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ================= CENTER CARD (VISION FOCUS) ================= */
.flow-card.vision{
  transform: scale(1.1);
  z-index: 2;

  border: 1px solid rgba(15,168,172,0.25);

  box-shadow: 0 20px 50px rgba(15,168,172,0.15);

  animation: floatCenter 5s ease-in-out infinite;
}

/* ================= LEFT MOVEMENT (MISSION) ================= */
.flow-card.mission{
  animation: moveLeft 7s ease-in-out infinite;
}

/* ================= RIGHT MOVEMENT (VALUES) ================= */
.flow-card.values{
  animation: moveRight 7s ease-in-out infinite;
}

/* ================= HOVER EFFECT ================= */
.flow-card:hover{
  transform: translateY(-10px) scale(1.05);

  animation-play-state: paused;

  box-shadow: 0 25px 60px rgba(15,168,172,0.2);
}

/* ================= ANIMATIONS ================= */

/* subtle float */
@keyframes floatX{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

/* mission moves left-right */
@keyframes moveLeft{
  0%{ transform: translateX(0); }
  50%{ transform: translateX(10px); }
  100%{ transform: translateX(0); }
}

/* values moves right-left */
@keyframes moveRight{
  0%{ transform: translateX(0); }
  50%{ transform: translateX(-10px); }
  100%{ transform: translateX(0); }
}

/* center focus float */
@keyframes floatCenter{
  0%{ transform: scale(1.1) translateY(0); }
  50%{ transform: scale(1.1) translateY(-8px); }
  100%{ transform: scale(1.1) translateY(0); }
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .abt-flow__track{
    flex-direction: column;
  }

  .flow-card{
    width: 100%;
  }

  .flow-card.vision{
    transform: scale(1);
  }
}


/* ================= WHY CHOOSE US MODERN ================= */
.why-modern{
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

/* container */
.why-modern__container{
  max-width: 1100px;
  margin: auto;
}

/* heading */
.why-modern__container h2{
  font-size: 32px;
  color: #01407E;
  margin-bottom: 10px;
}

.why-modern__container p{
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}

/* ================= HORIZONTAL FLOW ================= */
.why-track{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;

  position: relative;
}

/* soft glowing line effect */
.why-track::before{
  content: "";
  position: absolute;

  top: 50%;
  left: 0;
  right: 0;

  height: 2px;

  background: linear-gradient(90deg,
    transparent,
    rgba(15,168,172,0.3),
    transparent
  );

  transform: translateY(-50%);
  z-index: 0;
}

/* ================= ITEM ================= */
.why-item{
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 18px;

  background: #ffffff;

  border-radius: 30px;

  border: 1px solid rgba(1,64,126,0.08);

  box-shadow: 0 8px 20px rgba(0,0,0,0.04);

  transition: 0.4s ease;

  position: relative;
  z-index: 1;

  cursor: pointer;
}

/* icon */
.why-item i{
  color: #0FA8AC;
  font-size: 16px;
}

/* text */
.why-item span{
  font-size: 13px;
  color: #333;
  white-space: nowrap;
}

/* ================= HOVER EFFECT ================= */
.why-item:hover{
  transform: translateY(-6px) scale(1.05);

  box-shadow: 0 15px 40px rgba(15,168,172,0.15);

  border-color: rgba(15,168,172,0.3);
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .why-track{
    flex-direction: column;
    align-items: center;
  }

  .why-track::before{
    display: none;
  }

  .why-item{
    width: 100%;
    justify-content: center;
  }
}

/* ================= WHY CHOOSE US ================= */
.why-modern{
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.why-modern__container{
  max-width: 1100px;
  margin: auto;
}

.why-modern__container h2{
  font-size: 32px;
  color: #01407E;
  margin-bottom: 10px;
}

.why-modern__container p{
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}

/* ================= TRACK ================= */
.why-track{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ================= ITEM ================= */
.why-item{
  position: relative;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 18px;

  background: #ffffff;

  border-radius: 30px;

  border: 1px solid rgba(1,64,126,0.08);

  box-shadow: 0 8px 20px rgba(0,0,0,0.04);

  cursor: pointer;

  transition: 0.3s ease;
}

/* icon */
.why-item i{
  color: #0FA8AC;
  font-size: 16px;
}

/* text */
.why-item span{
  font-size: 13px;
  color: #333;
  white-space: nowrap;
}

/* hover effect */
.why-item:hover{
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 40px rgba(15,168,172,0.15);
}

/* ================= TOOLTIP ================= */
.why-tooltip{
  position: absolute;

  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  background: #01407E;
  color: white;

  font-size: 12px;

  padding: 10px 12px;

  border-radius: 10px;

  width: 220px;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;

  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

  z-index: 10;
}

/* tooltip arrow */
.why-tooltip::after{
  content: "";

  position: absolute;

  top: 100%;
  left: 50%;

  transform: translateX(-50%);

  border-width: 6px;
  border-style: solid;

  border-color: #01407E transparent transparent transparent;
}

/* SHOW ON HOVER */
.why-item:hover .why-tooltip{
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .why-track{
    flex-direction: column;
    align-items: center;
  }

  .why-tooltip{
    width: 200px;
  }
}


/* ================= CTA SECTION ================= */
.abt-cta{
  padding: 90px 20px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* container */
.abt-cta__container{
  max-width: 1000px;
  margin: auto;
  position: relative;
}

/* ================= BACKGROUND ICONS ================= */
.abt-cta__bg i{
  position: absolute;
  font-size: 30px;
  color: rgba(15,168,172,0.12);
  animation: floatIcon 6s ease-in-out infinite;
}

.i1{ top: 10%; left: 10%; }
.i2{ top: 30%; right: 15%; animation-delay: 1s; }
.i3{ bottom: 15%; left: 20%; animation-delay: 2s; }

/* ================= CTA BOX ================= */
.abt-cta__box{
  background: #f6fbff;

  padding: 50px 30px;

  border-radius: 20px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.06);

  border: 1px solid rgba(1,64,126,0.06);
}

/* title */
.abt-cta__box h2{
  font-size: 32px;
  color: #01407E;
  margin-bottom: 10px;
}

/* text */
.abt-cta__box p{
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* ================= BUTTONS ================= */
.abt-cta__buttons{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary{
  padding: 12px 18px;
  border-radius: 30px;

  font-weight: 600;
  text-decoration: none;

  transition: 0.3s ease;
}

/* primary */
.cta-primary{
  background: linear-gradient(135deg,#0FA8AC,#01407E);
  color: white;
  box-shadow: 0 10px 25px rgba(15,168,172,0.2);
}

.cta-primary:hover{
  transform: translateY(-4px);
}

/* secondary */
.cta-secondary{
  background: white;
  border: 1px solid rgba(1,64,126,0.2);
  color: #01407E;
}

.cta-secondary:hover{
  transform: translateY(-4px);
  border-color: #0FA8AC;
}

/* ================= BADGES ================= */
.abt-cta__badges{
  display: flex;
  justify-content: center;
  gap: 15px;

  margin-top: 25px;

  flex-wrap: wrap;
}

.abt-cta__badges span{
  font-size: 12px;
  color: #555;

  background: white;

  padding: 8px 12px;

  border-radius: 20px;

  border: 1px solid rgba(0,0,0,0.05);

  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================= ANIMATION ================= */
@keyframes floatIcon{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-15px); }
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .abt-cta__box h2{
    font-size: 24px;
  }

  .abt-cta__box{
    padding: 30px 20px;
  }
}

/* ================= SECTION ================= */
.how-premium{
  padding: 90px 20px;
  background: #ffffff;
  text-align: center;
}

.how-premium__container{
  max-width: 1100px;
  margin: auto;
}

.how-premium__container h2{
  font-size: 34px;
  color: #01407E;
  margin-bottom: 10px;
}

.how-premium__container p{
  font-size: 14px;
  color: #666;
  margin-bottom: 50px;
}

/* ================= GRID ================= */
.how-premium__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* ================= CARD ================= */
.how-card{
  background: #fff;

  padding: 25px;

  border-radius: 20px;

  border: 1px solid rgba(1,64,126,0.06);

  box-shadow: 0 10px 35px rgba(0,0,0,0.06);

  position: relative;

  text-align: left;

  transition: 0.4s ease;
}

/* step number */
.step{
  position: absolute;
  top: 15px;
  right: 18px;

  font-size: 12px;
  font-weight: 700;

  color: #0FA8AC;
}

/* icon */
.how-card i{
  font-size: 22px;
  color: #0FA8AC;
  margin-bottom: 10px;
}

/* title */
.how-card h3{
  font-size: 18px;
  color: #01407E;
  margin-bottom: 8px;
}

/* text */
.how-card p{
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ================= ACTIVE STATE ================= */
.how-card.active{
  background: linear-gradient(135deg,#01407E,#0FA8AC);

  color: white;

  transform: scale(1.05);

  box-shadow: 0 25px 60px rgba(15,168,172,0.25);
}

/* fix text color on active */
.how-card.active i,
.how-card.active h3,
.how-card.active p,
.how-card.active .step{
  color: #fff;
}

/* ================= HOVER ================= */
.how-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(15,168,172,0.15);
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .how-premium__grid{
    grid-template-columns: 1fr;
  }
}


/* ACTIVE STATE SAFE FIX */
.step-card.active{
  background: linear-gradient(135deg,#01407E,#0FA8AC);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(15,168,172,0.25);
}

.step-card.active i,
.step-card.active h3,
.step-card.active p,
.step-card.active .step{
  color: white !important;
}


/* reuse same hero system */
.product-hero{
  background: #ffffff;
}

/* search bar (only new element) */
.contact-hero__search{
  display: flex;

  max-width: 420px;
  margin: 20px auto 0;

  border-radius: 30px;

  overflow: hidden;

  border: 1px solid rgba(1,64,126,0.15);
}

.contact-hero__search input{
  flex: 1;

  padding: 12px 15px;

  border: none;
  outline: none;
}

.contact-hero__search button{
  background: #0FA8AC;
  color: white;

  border: none;

  padding: 0 16px;

  cursor: pointer;
}


/* ================= SECTION ================= */
.titan-products{
  padding: 80px 20px;
  background: #ffffff;
}

/* ================= HEADER ================= */
.titan-products__header{
  max-width: 1200px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 30px;

  margin-bottom: 40px;
}

/* LEFT TEXT */
.titan-header-left h2{
  font-size: 32px;
  color: #01407E;
  margin-bottom: 6px;
}

.titan-header-left p{
  font-size: 14px;
  color: #666;
}

/* ================= SEARCH ================= */
.titan-search{
  position: relative;
  width: 320px;
}

.titan-search input{
  width: 100%;
  padding: 12px 40px 12px 15px;

  border-radius: 30px;

  border: 1px solid rgba(1,64,126,0.15);

  outline: none;

  transition: 0.3s;
}

.titan-search input:focus{
  border-color: #0FA8AC;
  box-shadow: 0 0 15px rgba(15,168,172,0.15);
}

.titan-search i{
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #0FA8AC;
}

/* ================= GRID ================= */
.titan-grid{
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

  .titan-products__header{
    flex-direction: column;
    align-items: flex-start;
  }

  .titan-search{
    width: 100%;
  }

  .titan-grid{
    grid-template-columns: 1fr;
  }
}


/* ================= HERO BASE ================= */
.oxy-hero{
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;

  background: radial-gradient(circle at 20% 20%, #0fa8ac22, transparent 40%),
              radial-gradient(circle at 80% 60%, #01407e22, transparent 45%),
              #f6fbff;
}


@media (max-width: 768px){

  .oxy-hero{
    height: auto;
    padding: 60px 0;
  }

  /* CHANGE LAYOUT COMPLETELY */
  .oxy-container{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  /* PRODUCT BECOMES MAIN FOCUS */
  .oxy-product{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* FIX AURA CARD FULL CONTROL */
  .aura-card{
    /*width: 240px !important;*/    
    padding: 10px;
    transform: none !important;
    animation: none; /* stop float on mobile for stability */
  }

  .aura-inner img{
    width: 100%;
    height: 180px;
    padding: 10px;
  }

  /* INFO FULL WIDTH */
  .oxy-info{
    width: 100%;
    align-items: center;
  }

  .glass-card{
    width: 100%;
    padding: 18px;
    border-radius: 14px;
  }

  .glass-card h1{
    font-size: 20px;
    line-height: 1.3;
  }

  .glass-card p{
    font-size: 13px;
  }

  /* BUTTON STACK FIX */
  .oxy-actions{
    flex-direction: column;
    width: 100%;
  }

  .oxy-actions a{
    width: 100%;
  }

  /* REMOVE HEAVY BACKGROUND ANIMATIONS */
  .fog, .light-beam{
    display: none;
  }

  /* SCROLL HINT SMALL */
  .scroll-hint{
    justify-content: center;
    margin-top: 10px;
  }
}

/* ================= BACKGROUND ================= */
.oxy-bg{
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* fog layers */
.fog{
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(15,168,172,0.08), transparent 70%);
  filter: blur(40px);
  animation: floatFog 12s infinite ease-in-out;
}

.fog-1{
  top: -100px;
  left: -120px;
}

.fog-2{
  bottom: -150px;
  right: -120px;
  animation-delay: 3s;
}

/* light beam */
.light-beam{
  position: absolute;
  top: -20%;
  left: 50%;
  width: 2px;
  height: 140%;
  background: linear-gradient(to bottom, transparent, #0fa8ac55, transparent);
  transform: rotate(25deg);
  filter: blur(1px);
  animation: beamMove 8s infinite ease-in-out;
}

/* particles */
.particles::before,
.particles::after{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background-image: radial-gradient(#0fa8ac33 1px, transparent 1px);
  background-size: 40px 40px;
  animation: drift 20s linear infinite;
}

/* ================= LAYOUT ================= */
.oxy-container{
  position: relative;
  width: 90%;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;

  z-index: 2;
}

/* ================= PRODUCT ================= */
.oxy-product{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-float{
  animation: floatProduct 4s ease-in-out infinite;
  filter: drop-shadow(0 40px 40px rgba(0,0,0,0.2));
}

.product-float img{
  width: 420px;
  max-width: 100%;
  transform-origin: center;
}

/* shadow */
.shadow{
  position: absolute;
  bottom: 10px;
  width: 220px;
  height: 40px;
  background: rgba(0,0,0,0.15);
  filter: blur(20px);
  border-radius: 50%;
  animation: shadowPulse 4s ease-in-out infinite;
}

/* ================= INFO CARD ================= */
.oxy-info{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.glass-card{
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.4);

  padding: 30px;
  border-radius: 18px;

  box-shadow: 0 25px 60px rgba(0,0,0,0.08);

  animation: fadeIn 1s ease;
}

.glass-card h1{
  font-size: 36px;
  color: #01407E;
  margin: 12px 0;
  line-height: 1.2;
}

.glass-card h1 span{
  font-size: 16px;
  color: #0fa8ac;
  display: block;
  margin-top: 8px;
}

.glass-card p{
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ================= TAG ================= */
.tag{
  display: inline-block;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(15,168,172,0.12);
  color: #01407E;
}

/* ================= BUTTONS ================= */
.oxy-actions{
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.btn{
  padding: 10px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary{
  background: linear-gradient(135deg,#0fa8ac,#01407e);
  color: #fff;
}

.btn.ghost{
  border: 1px solid #01407e;
  color: #01407e;
}

.btn:hover{
  transform: translateY(-3px);
}

/* ================= SCROLL HINT ================= */
.scroll-hint{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #666;
}

.scroll-hint span{
  width: 18px;
  height: 30px;
  border: 2px solid #0fa8ac;
  border-radius: 20px;
  position: relative;
}

.scroll-hint span::after{
  content:"";
  position:absolute;
  width:4px;
  height:4px;
  background:#0fa8ac;
  border-radius:50%;
  left:50%;
  top:6px;
  transform:translateX(-50%);
  animation: scrollDot 1.5s infinite;
}

/* ================= ANIMATIONS ================= */
@keyframes floatProduct{
  0%,100%{ transform: translateY(0px) scale(1); }
  50%{ transform: translateY(-18px) scale(1.02); }
}

@keyframes shadowPulse{
  0%,100%{ transform: scale(1); opacity: 0.4; }
  50%{ transform: scale(1.2); opacity: 0.2; }
}

@keyframes floatFog{
  0%,100%{ transform: translate(0,0); }
  50%{ transform: translate(40px,20px); }
}

@keyframes beamMove{
  0%,100%{ transform: rotate(25deg) translateY(0); }
  50%{ transform: rotate(28deg) translateY(20px); }
}

@keyframes drift{
  0%{ transform: translateY(0); }
  100%{ transform: translateY(-100px); }
}

@keyframes scrollDot{
  0%{ top:6px; opacity:1; }
  100%{ top:18px; opacity:0; }
}

@keyframes fadeIn{
  from{ opacity:0; transform:translateY(20px); }
  to{ opacity:1; transform:translateY(0); }
}

/* ================= MOBILE ================= */
@media(max-width: 768px){

  /* HERO STACK */
  .oxy-container{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }

  /* PRODUCT FIX */
  .oxy-product{
    order: 1;
    display: flex;
    justify-content: center;
  }

  /* INFO BELOW PRODUCT */
  .oxy-info{
    order: 2;
    align-items: center;
  }

  /* AURA CARD FIX */
  .aura-card{
    width: 280px;   /* important */
    padding: 12px;
  }

  .aura-inner img{
    height: 220px;  /* reduce height */
    padding: 10px;
  }

  /* GLASS CARD FIX */
  .glass-card{
    padding: 20px;
  }

  .glass-card h1{
    font-size: 22px;
    line-height: 1.3;
  }

  .glass-card p{
    font-size: 13px;
  }

  /* BUTTON STACK */
  .oxy-actions{
    flex-direction: column;
    width: 100%;
  }

  .oxy-actions a{
    width: 100%;
    text-align: center;
  }

  /* SCROLL HINT */
  .scroll-hint{
    justify-content: center;
  }

  /* BACKGROUND SIMPLIFY (performance fix) */
  .fog, .light-beam{
    opacity: 0.4;
  }
}

/* ================= AURA CARD WRAPPER ================= */
.aura-card{
  position: relative;
  width: 420px;
  max-width: 100%;

  padding: 18px;
  border-radius: 26px;

  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(15,168,172,0.25);

  box-shadow:
    0 30px 80px rgba(1,64,126,0.18),
    0 0 60px rgba(15,168,172,0.10);

  transform: translateY(0);
  transition: all 0.4s ease;

  animation: floatCard 5s ease-in-out infinite;
}

/* hover lift */
.aura-card:hover{
  transform: translateY(-10px) scale(1.03) rotateX(4deg);
  box-shadow:
    0 40px 100px rgba(1,64,126,0.25),
    0 0 80px rgba(15,168,172,0.18);
}

/* ================= OUTER GLOW ================= */
.aura-glow{
  position: absolute;
  inset: -20px;

  background: radial-gradient(
    circle,
    rgba(15,168,172,0.25),
    transparent 60%
  );

  filter: blur(25px);
  z-index: 0;

  animation: glowPulse 4s ease-in-out infinite;
}

/* ================= INNER FRAME ================= */
.aura-inner{
  position: relative;
  z-index: 2;

  border-radius: 22px;
  overflow: hidden;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.85),
    rgba(255,255,255,0.55)
  );

  border: 1px solid rgba(15,168,172,0.15);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
}

/* ================= IMAGE ================= */
.aura-inner img{
  width: 100%;
  height: auto;

  max-height: 420px;

  object-fit: contain;

  filter: none; /* remove harsh shadow effect */
  transform: translateZ(0);

  transition: transform 0.5s ease;
}

.aura-inner::before{
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;

  width: 160%;
  height: 160%;

  background: radial-gradient(
    circle,
    rgba(255,255,255,0.25),
    transparent 60%
  );

  transform: rotate(25deg);

  pointer-events: none;
}


/* ================= SECTION ================= */
.privacy-modern-section{
  padding: 80px 20px;
  background: #f6fbff;
}

/* container */
.privacy-modern-container{
  max-width: 1000px;
  margin: auto;
}

/* ================= HEADER ================= */
.privacy-modern-head{
  text-align: center;
  margin-bottom: 40px;
}

.privacy-modern-head .label{
  font-size: 12px;
  color: #0FA8AC;
  font-weight: 600;
  letter-spacing: 1px;
}

.privacy-modern-head h1{
  font-size: 36px;
  color: #01407E;
  margin: 10px 0;
}

.privacy-modern-head p{
  font-size: 14px;
  color: #666;
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}

/* ================= MAIN CARD ================= */
.privacy-modern-card{
  background: #ffffff;

  padding: 40px;

  border-radius: 18px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.06);

  border: 1px solid rgba(1,64,126,0.08);
}

/* headings */
.privacy-modern-card h2{
  font-size: 18px;
  color: #01407E;
  margin-top: 25px;
}

/* text */
.privacy-modern-card p{
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

/* list */
.privacy-modern-card ul{
  padding-left: 18px;
  margin-top: 10px;
}

.privacy-modern-card li{
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
}

/* ================= CONTACT ================= */
.privacy-modern-contact{
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(1,64,126,0.1);
}

.privacy-modern-contact-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.privacy-modern-contact-grid a{
  background: #f6fbff;

  padding: 12px;

  border-radius: 12px;

  text-align: center;

  text-decoration: none;

  color: #01407E;

  font-size: 13px;

  transition: 0.3s ease;

  border: 1px solid rgba(1,64,126,0.08);
}

.privacy-modern-contact-grid a i{
  display: block;
  margin-bottom: 6px;
  color: #0FA8AC;
}

.privacy-modern-contact-grid a:hover{
  transform: translateY(-4px);
  background: #0FA8AC;
  color: white;
}

.privacy-modern-contact-grid a:hover i{
  color: white;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

  .privacy-modern-card{
    padding: 25px;
  }

  .privacy-modern-head h1{
    font-size: 26px;
  }

  .privacy-modern-contact-grid{
    grid-template-columns: 1fr;
  }
}



/* ================= SECTION ================= */
.terms-modern-section{
  padding: 80px 20px;
  background: #f6fbff;
}

/* container */
.terms-modern-container{
  max-width: 1000px;
  margin: auto;
}

/* ================= HEADER ================= */
.terms-modern-head{
  text-align: center;
  margin-bottom: 40px;
}

.terms-modern-head .label{
  font-size: 12px;
  color: #0FA8AC;
  font-weight: 600;
  letter-spacing: 1px;
}

.terms-modern-head h1{
  font-size: 36px;
  color: #01407E;
  margin: 10px 0;
}

.terms-modern-head p{
  font-size: 14px;
  color: #666;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

/* ================= CARD ================= */
.terms-modern-card{
  background: #ffffff;

  padding: 40px;

  border-radius: 18px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.06);

  border: 1px solid rgba(1,64,126,0.08);
}

/* headings */
.terms-modern-card h2{
  font-size: 18px;
  color: #01407E;
  margin-top: 25px;
}

/* text */
.terms-modern-card p{
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

/* ================= CONTACT ================= */
.terms-modern-contact{
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(1,64,126,0.1);
}

.terms-modern-contact-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.terms-modern-contact-grid a{
  background: #f6fbff;

  padding: 12px;

  border-radius: 12px;

  text-align: center;

  text-decoration: none;

  color: #01407E;

  font-size: 13px;

  transition: 0.3s ease;

  border: 1px solid rgba(1,64,126,0.08);
}

.terms-modern-contact-grid a i{
  display: block;
  margin-bottom: 6px;
  color: #0FA8AC;
}

.terms-modern-contact-grid a:hover{
  transform: translateY(-4px);
  background: #0FA8AC;
  color: white;
}

.terms-modern-contact-grid a:hover i{
  color: white;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

  .terms-modern-card{
    padding: 25px;
  }

  .terms-modern-head h1{
    font-size: 26px;
  }

  .terms-modern-contact-grid{
    grid-template-columns: 1fr;
  }
}

/* hover zoom */
.aura-card:hover img{
  transform: scale(1.05);
}

/* ================= LIGHT SWEEP EFFECT ================= */
.light-sweep{
  position: absolute;
  top: 0;
  left: -80%;

  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );

  transform: skewX(-25deg);

  animation: sweep 5s infinite;
}

/* ================= ANIMATIONS ================= */
@keyframes floatCard{
  0%,100%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-12px);
  }
}

@keyframes glowPulse{
  0%,100%{
    opacity: 0.5;
    transform: scale(1);
  }
  50%{
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes sweep{
  0%{
    left: -80%;
    opacity: 0;
  }
  20%{
    opacity: 1;
  }
  50%{
    left: 120%;
    opacity: 0;
  }
  100%{
    left: 120%;
    opacity: 0;
  }
}


/* ================= SECTION ================= */
.orbit-section{
  padding: 120px 20px;
  background: #f6fbff;
  position: relative;
  overflow: hidden;
}

/* ================= CONTAINER ================= */
.orbit-container{
  width: 500px;
  height: 500px;
  margin: auto;
  position: relative;
}

/* ================= CENTER PRODUCT ================= */
.orbit-center{
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
  z-index: 10;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 20px 60px rgba(1,64,126,0.15);
}

.orbit-center img{
  width: 140px;
  animation: breathe 4s ease-in-out infinite;
}

/* ================= ORBIT RING ================= */
.orbit-ring{
  position: absolute;
  width: 100%;
  height: 100%;

  border-radius: 50%;

  animation: rotateRing 18s linear infinite;
}

/* ================= FEATURE ITEMS ================= */
.orbit-item{
  position: absolute;

  width: 140px;
  padding: 10px;

  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(15,168,172,0.2);
  border-radius: 14px;

  text-align: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  transition: 0.3s ease;
}

/* ICON */
.orbit-item i{
  font-size: 16px;
  color: #0fa8ac;
  display: block;
  margin-bottom: 6px;
}

/* TEXT */
.orbit-item span{
  font-size: 12px;
  color: #01407e;
  font-weight: 600;
}

/* HOVER */
.orbit-item:hover{
  transform: scale(1.15);
  box-shadow: 0 20px 50px rgba(15,168,172,0.25);
}

/* ================= POSITIONING (ORBIT CIRCLE) ================= */
.orbit-item:nth-child(1){ top: 0%; left: 50%; transform: translate(-50%, -50%); }
.orbit-item:nth-child(2){ top: 20%; left: 85%; transform: translate(-50%, -50%); }
.orbit-item:nth-child(3){ top: 50%; left: 100%; transform: translate(-50%, -50%); }
.orbit-item:nth-child(4){ top: 80%; left: 85%; transform: translate(-50%, -50%); }
.orbit-item:nth-child(5){ top: 100%; left: 50%; transform: translate(-50%, -50%); }
.orbit-item:nth-child(6){ top: 80%; left: 15%; transform: translate(-50%, -50%); }

/* ================= ANIMATIONS ================= */
@keyframes rotateRing{
  from{
    transform: rotate(0deg);
  }
  to{
    transform: rotate(360deg);
  }
}

@keyframes breathe{
  0%,100%{
    transform: scale(1);
  }
  50%{
    transform: scale(1.08);
  }
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .orbit-container{
    width: 320px;
    height: 320px;
  }

  .orbit-item{
    width: 110px;
  }

  .orbit-center{
    width: 180px;
    height: 180px;
  }

  .orbit-center img{
    width: 75px;
  }
}

/* ================= SECTION ================= */
.transform-section{
  padding: 60px 20px;
  background: linear-gradient(180deg,#ffffff,#f6fbff);
}

/* ================= CONTAINER ================= */
.transform-container{
  max-width: 1000px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  gap: 20px;
}

/* ================= SIDES ================= */
.problem-side,
.solution-side{
  padding: 30px;
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);

  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

/* TITLES */
.problem-side h2{
  color: #b00020;
  margin-bottom: 15px;
}

.solution-side h2{
  color: #01407E;
  margin-bottom: 15px;
}

/* ITEMS */
.problem-item,
.solution-item{
  padding: 10px 12px;
  margin-bottom: 10px;

  border-radius: 10px;

  font-size: 13px;

  transition: 0.3s ease;
}

/* PROBLEM STYLE */
.problem-item{
  background: rgba(255,0,0,0.05);
  color: #b00020;
}

/* SOLUTION STYLE */
.solution-item{
  background: rgba(15,168,172,0.08);
  color: #01407E;
}

/* HOVER */
.problem-item:hover,
.solution-item:hover{
  transform: translateX(5px);
}

/* ================= CENTER LINE ================= */
.transform-line{
  width: 4px;
  height: 100%;

  background: linear-gradient(180deg,#b00020,#0fa8ac,#01407e);
  border-radius: 10px;

  justify-self: center;   /* ⭐ IMPORTANT FIX */
  align-self: stretch;    /* fills full height */

  position: relative;

  animation: pulseLine 2.5s infinite;
}

/* glowing dot */
.transform-line::after{
  content:"";
  position:absolute;
  top: 0;

  width: 10px;
  height: 10px;

  background: #0fa8ac;
  border-radius: 50%;

  left: 50%;
  transform: translateX(-50%);

  animation: moveDot 3s infinite linear;
}

/* ================= ANIMATIONS ================= */
@keyframes pulseLine{
  0%,100%{ opacity: 0.6; }
  50%{ opacity: 1; }
}

@keyframes moveDot{
  0%{ top: 0; }
  100%{ top: 100%; }
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .transform-container{
    grid-template-columns: 1fr;
  }

  .transform-line{
    display: none;
  }

  .problem-side,
  .solution-side{
    margin-bottom: 20px;
  }
}


/* ================= WRAPPER ================= */
.oxy-tabs{
  padding: 100px 20px;
  background: #f6fbff;
}

/* container */
.tab-container{
  max-width: 900px;
  margin: auto;

  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);

  border-radius: 18px;
  padding: 25px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* ================= TAB BUTTONS ================= */
.tab-buttons{
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab-btn{
  padding: 10px 16px;
  border: none;
  border-radius: 30px;

  background: rgba(1,64,126,0.08);
  color: #01407e;

  cursor: pointer;
  font-weight: 600;

  transition: 0.3s ease;
}

.tab-btn.active{
  background: linear-gradient(135deg,#0fa8ac,#01407e);
  color: white;
  box-shadow: 0 10px 25px rgba(15,168,172,0.25);
}

.tab-btn:hover{
  transform: translateY(-2px);
}

/* ================= TAB CONTENT ================= */
.tab-content{
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active{
  display: block;
}

/* DESCRIPTION */
.tab-content h2{
  color: #01407e;
  margin-bottom: 10px;
}

.tab-content p{
  color: #555;
  line-height: 1.6;
  font-size: 14px;
}

/* ================= FEATURES GRID ================= */
.feature-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
}

.feature-box{
  padding: 12px;
  border-radius: 12px;

  background: rgba(15,168,172,0.08);
  color: #01407e;

  font-size: 13px;

  transition: 0.3s ease;
}

.feature-box:hover{
  transform: translateY(-4px);
  background: rgba(15,168,172,0.15);
}

/* ================= LIST ================= */
.tab-content ul{
  padding-left: 18px;
  color: #555;
}

.tab-content ul li{
  margin-bottom: 8px;
  font-size: 14px;
}

/* ================= ANIMATION ================= */
@keyframes fadeIn{
  from{
    opacity: 0;
    transform: translateY(10px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .feature-grid{
    grid-template-columns: 1fr;
  }
}/* ================= WRAPPER ================= */
.glass-tabs{
  padding: 100px 20px;
  background: #f6fbff;
}

/* container */
.glass-tabs-container{
  max-width: 900px;
  margin: auto;

  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(18px);

  border-radius: 18px;
  padding: 25px;

  box-shadow: 0 25px 70px rgba(0,0,0,0.08);
}

/* ================= SWITCH ================= */
.segmented-switch{
  position: relative;
  display: flex;

  background: rgba(1,64,126,0.08);
  border-radius: 50px;
  padding: 5px;

  margin-bottom: 25px;
  overflow: hidden;
}

/* indicator */
.switch-indicator{
  position: absolute;
  top: 5px;
  left: 5px;

  width: calc(33.33% - 6px);
  height: calc(100% - 10px);

  background: linear-gradient(135deg,#0fa8ac,#01407e);
  border-radius: 50px;

  transition: 0.4s ease;
  z-index: 0;
}

/* buttons */
.switch-btn{
  flex: 1;
  border: none;
  background: transparent;

  padding: 10px;
  font-weight: 600;
  cursor: pointer;

  z-index: 1;

  color: #01407e;

  transition: 0.3s;
}

.switch-btn.active{
  color: white;
}

/* ================= PANELS ================= */
.tab-panels{
  position: relative;
}

.panel{
  display: none;
  animation: fadeSlide 0.4s ease;
}

.panel.active{
  display: block;
}

.panel h2{
  color: #01407e;
  margin-bottom: 10px;
}

.panel p{
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* features grid */
.grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.grid div{
  background: rgba(15,168,172,0.08);
  padding: 12px;
  border-radius: 10px;

  font-size: 13px;
  color: #01407e;
}

/* list */
.panel ul{
  padding-left: 18px;
  color: #555;
}

.panel ul li{
  margin-bottom: 8px;
  font-size: 14px;
}

/* animation */
@keyframes fadeSlide{
  from{
    opacity: 0;
    transform: translateY(10px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* mobile */
@media(max-width:768px){
  .grid{
    grid-template-columns: 1fr;
  }
}

.alert-success{
  background: #e7fff3;
  color: #0a7a4a;
  padding: 12px 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #b7f5d6;
  font-weight: 500;
}

.alert-error{
  background: #ffe7e7;
  color: #a10000;
  padding: 12px 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #ffb7b7;
  font-weight: 500;
}