/*:root {
    --glass-bg: rgba(65, 112, 163, 0.1);
    --glass-border: rgba(46, 92, 145, 0.37);
    --accent-blue: #00d4ff;
}*/

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    color: white;
    overflow-x: hidden;
    background-color: #fcffff;
}

.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: saturate(1.5);
}

/* Main Glass Pane Container */
.glass-pane {
    position: relative;
    width: 85%;
    max-width: 1100px;
    min-height: 600px;
    margin: 50px auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.hamburger {
  display: none;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 3000;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #0b4b80;
  border-radius: 2px;
}

/* Top Navigation Bar */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    border-bottom: 1px solid var(--glass-border);
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: 0.3s;
}

.nav-links a:hover, .active {
    opacity: 1;
    color:rgb(0, 0, 0);

}

/* Page Content Area */
.content-body {
    padding: 40px;
    flex-grow: 1;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s ease;
    border:navy; 
}

.btn-explore {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 12px 35px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 20px;
    letter-spacing: 2px;
}

.btn-explore:hover {
    background: white;
    color: #1c70ee;
}
.logo-container {
    position: fixed;
    top: 25px; 
    left: 40px; 
    z-index: 1001; 
}

.logo-glass {
    width: 100px;
    height: 60px;
    position: fixed;
    top: 15px;
    left: 10px;
    z-index: 1000;
    display: flex;
    gap: 0px;
    align-items: center;
    padding: 8px 20px;
    backdrop-filter: blur(10px);
    border-radius: 50px; 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a4a9e; /* Darker blue to match your screenshot logo text */
    letter-spacing: -0.5px;
}


/** nva  bar**/
/* Container to center the nav bar at the top */
.nav-container {
    position: fixed;
    top: 20px;
    width: 100%;
    display: flex;
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
}

.floating-nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Soft shadow */
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-item {
    text-decoration: none;
    color: rgb(11, 75, 128);
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    border-radius: 40px;
}

/* The Blue Active  look from your screenshot */
.nav-item.active {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(58, 123, 213, 0.4);
}

.nav-item:hover:not(.active) {
    color: #000000;
    background: rgba(58, 123, 213, 0.05);
}


/* Centering the navbar at the top */
.nav-wrapper {
    position: fixed;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.medslan-nav {
    display: flex;
    align-items: center;
    padding: 6px 8px; /* Tight padding to match screenshot */
    background: rgba(255, 255, 255, 0.95); /* Bright white with slight transparency */
    backdrop-filter: blur(10px);
    border-radius: 50px; /* Perfect capsule shape */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft floating shadow */
    border: 1px solid rgba(255, 255, 255, 0.3);
}


.get-started-btn {
    /* Exact Blue Gradient from your screenshot */
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
    
    /* Text Styling */
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    
    /* Shape and Layout */
    padding: 12px 30px;
    border-radius: 50px; /* Perfect pill shape */
    border: none;
    cursor: pointer;
    
    /* Floating Effect */
    box-shadow: 0 8px 20px rgba(58, 123, 213, 0.35);
    
    /* Smooth Transitions */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Keep it fixed to the top right */
    position: fixed;
    top: 25px;
    right: 40px;
    z-index: 2001;
}

/* Hover and Interaction Effects */
.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(58, 123, 213, 0.5);
    filter: brightness(1.05);
}

.get-started-btn:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(58, 123, 213, 0.3);
}

/** glass**/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}
.engine {
  width: 100%;
  max-width: 1500px;
  padding: 60px;
}

h2 {
  text-align: center;
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 60px;
}

.layout {
  position: relative;
  height: 500px;
}

/* Columns */
.col {
  position: absolute;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.left { left: 0; }
.right { right: 0; }

/* Pills */
.pill {
  width: 340px;
  padding: 16px 26px;
  border-radius: 40px;
  text-align: center;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #dff0ff;
}

.star {
  font-size: 40px;
  color: #ffd46a;
  text-shadow: 0 0 20px rgba(255,212,106,.9);
}

.svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.svg path {
  fill: none;
  stroke: rgba(120,190,255,0.4);
  stroke-width: 2;
}


/** supprt**/
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* FORM CONTAINER */
.form {
  --bg-light: #efefef;
  --bg-dark: #707070;
  --clr: #ffffff;
  --clr-alpha: rgba(255, 255, 255, 0.25);

  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* INPUT GROUP */
.input-span {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* LABEL */
.label {
  color: var(--clr);
  font-weight: 600;
  font-size: 0.9rem;
}

/* INPUTS & TEXTAREA */
.form input,
.form textarea {
  width: 100%;
  padding: 1.2rem 1rem;  
  border-radius: 0.6rem;
  border: none;

  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  outline: 2px solid var(--bg-dark);
  color: #fff;
  font-size: 0.95rem;
}

/* MESSAGE BOX HEIGHT */
.form textarea {
  min-height: 120px;        /* ⬅️ MESSAGE HEIGHT */
  resize: none;
}

/* PLACEHOLDER */
.form input::placeholder,
.form textarea::placeholder {
  color: rgb(255, 255, 255);
}

/* FOCUS EFFECT */
.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--clr);
}

/* SUBMIT BUTTON */
.form .submit {
  margin-top: 0.5rem;
  padding: 1rem;
  width: 100%;
  border-radius: 3rem;

  background-color: var(--bg-dark);
  color: var(--bg-light);

  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;

  transition: all 0.3s ease;
}

/* BUTTON HOVER */
.form .submit:hover {
  background-color: var(--clr);
  color: var(--bg-dark);
}

/* OPTIONAL LINK STYLE */
.span {
  font-size: 0.85rem;
  text-align: center;
  color: var(--bg-dark);
}

.span a {
  color: var(--clr);
  text-decoration: none;
}

/* PRODUCTS SECTION */
.products {
  padding: 60px 40px;
}

/* GRID LAYOUT */
.cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 30px;
  justify-items: center;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
 .cards-grid{
    grid-template-columns: 1fr;

  }
}
/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ===== FIXED NAVBAR ===== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  padding: 14px 30px;
  border-radius: 50px;
  z-index: 1000;
}

/* ===== PRODUCTS SECTION (THIS CONTROLS SPACING) ===== */
.products {
  padding-top: 160px;   /* 🔥 SPACE FROM NAVBAR */
  padding-bottom: 80px;
}

/* ===== CARDS GRID ===== */
.cards-container {
  max-width: 1200px;
  margin: 0 auto;       /* CENTER – DO NOT USE TOP MARGIN */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: center;
}

/* ===== GLASS CARD ===== */
.card {
  width: 190px;
  height: 250px;
  padding: 18px;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-radius: 18px;
  border: 1px solid navy;

  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);

  display: flex;
  flex-direction: column;
  align-items: center;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  background: rgba(26, 54, 80, 0.753);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* ===== CARD TOP LINE ===== */
.card-border-top {
  width: 60%;
  height: 4px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 0 0 12px 12px;
  margin-bottom: 16px;
}

/* ===== IMAGE PLACEHOLDER ===== */
.card .img {
  width: 70px;
  height: 90px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  margin-bottom: 16px;
}

/* ===== TEXT ===== */
.card span {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.card .job {
  font-size: 12px;
  opacity: 0.75;
  margin-bottom: auto;
}

/* ===== BUTTON ===== */
.card button {
  padding: 8px 26px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(43, 0, 255, 0.25);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.card :hover {
  background: rgba(2, 74, 88, 0.45);
  transform: scale(1.05);
}


/** works **/
.use-cases-container {
    background: rgb(138, 171, 241);
    padding: 100px 0;
    display: flex;
    justify-content: center;
}

.circular-layout {
    position: relative;
    width: 800px;
    height: 600px;
}

/* --- CENTER HUB (Top Position) --- */
.hub-center {
    position: absolute;
    top: 300px; /* Changed from bottom to top */
    left: 50%;
    transform: translateX(-50%);
    width: 180px; /* Reduced Size */
    height: 180px;
    background: #385888;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 10;
}

.hub-text h2 {
    color: #fff;
    font-size: 1.2rem; /* Reduced Font Size */
    text-align: center;
    padding: 15px;
}

/* --- PENTA TILES (Small & Tight) --- */
.penta-tile {
    position: absolute;
    width: 130px; /* Reduced Size */
    height: 130px;
    background: rgba(63, 123, 172, 0.07);
    backdrop-filter: blur(15px);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.penta-tile .num { font-weight: bold; color: #fff; font-size: 1.1rem; }
.penta-tile p { font-size: 0.65rem; color: #ccc; text-align: center; margin: 0; }

.penta-tile.highlight {
    background: rgba(255, 204, 0, 0.15);
    border: 1px solid rgba(255, 204, 0, 0.3);
}
.penta-tile.highlight .num { color: #ffcc00; }

/* --- TIGHT POSITIONING (Corrected for Inverted Arch) --- */

/* Left Side */
.tile-1 { left: 160px; top: 380px; }
.tile-2 { left: 120px; top: 230px; }
.tile-3 { left: 240px; top: 120px; } /* Closer to Hub */

/* Right Side */
.tile-5 { right: 240px; top: 120px; } /* Closer to Hub */
.tile-6 { right: 120px; top: 230px; }
.tile-7 { right: 160px; top: 380px; }

.penta-tile:hover { transform: scale(1.1); z-index: 20; }
/**home**/
/* Ensure the parent container doesn't have a solid color if you want total transparency */
/* Container & Centering */
.page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    
    padding: 400px 40px 80px 40px;
    font-family: 'Inter', sans-serif;
}

/* TOP INTRO SECTION */
.intro-section {
    text-align: center;
    max-width: 800px; /* Limits width to force exactly ~3 lines of text */
    margin-bottom: 50px; /* Space between text and the card */
}

.main-heading {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.intro-paragraph {
    color: rgba(5, 5, 5, 0.75);
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0 auto;
}

/* THE TRANSPARENT GLASS CARD */
.glass-card {
    width: 440px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02); /* High transparency */
    backdrop-filter: blur(45px);           /* High obscurity (frosted) */
    -webkit-backdrop-filter: blur(45px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}



/* Card Header Content */
.card-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 25px;
}

.big-number {
    font-size: 110px;
    font-weight: 800;
    color: #ffffff;
    line-height: 0.9;
}

.tag-label {
    color: #00d2ff; /* Medslan Cyan */
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 10px;
}

/* Feature Row Styling */
.feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 12px 0;
    padding: 16px 20px;
    border-radius: 14px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px); /* Slight slide on hover */
}

.icon {
    margin-right: 15px;
    font-size: 1.2rem;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ===== PRODUCTS SECTION (THIS CONTROLS SPACING) ===== */
.products {
  padding-top: 160px;   /* 🔥 SPACE FROM NAVBAR */
  padding-bottom: 80px;
}

/* ===== CARDS GRID ===== */
.cards-container {
  max-width: 1200px;
  margin: 0 auto;       /* CENTER – DO NOT USE TOP MARGIN */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: center;
}

/* ===== GLASS CARD ===== */
.card {
  width: 170px;
  height: 200px;
  padding: 20px;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-radius: 18px;
  border: 1px solid navy;

  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);

  display: flex;
  flex-direction: column;
  align-items: center;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ===== CARD TOP LINE ===== */
.card-border-top {
  width: 60%;
  height: 4px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 0 0 12px 12px;
  margin-bottom: 16px;
}

/* ===== IMAGE PLACEHOLDER ===== */
.card .img {
  width: 70px;
  height: 90px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  margin-bottom: 16px;
}

/* ===== TEXT ===== */
.card span {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.card .job {
  font-size: 12px;
  opacity: 0.75;
  margin-bottom: auto;
}

/* ===== BUTTON ===== */
.card button {
  padding: 8px 26px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.card button:hover {
  background: rgba(255, 255, 255, 0.45);
  transform: scale(1.05);
}



@media (max-width: 600px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.carousel-wrapper {
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  margin: 80x 0;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  margin: 0 auto; 
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: 100%;
}

.slide {
  min-width: 100%;
  position: relative;
  display: flex;
}

.slide img {
  width: 100%;
  height: 100px; /* adjust as needed */
  align-items: left;

  display: block;
}

/* --- Glass Caption --- */
.glass-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%); /* center caption horizontally */
  width: 110%;  /* caption width */
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px); /* increase blur here */
  padding: 15px;
  border-radius: 15px;
  color: #000;
  text-align: center;
}

.glass-caption h3 {
  font-size: 22px;
  color: #00063bff;
  margin-bottom: 5px;
}

.glass-caption p {
  font-size: 16px;
}

/* --- Hero Section --- */
.hero-section {
    padding: 180px 5% 135px 0%;
    width: 100%;
    display: flex; 
    background-image: url("homebg.jpg");
    background-size: cover;
    justify-content: center;
}

.hero-container {
    display: flex;
    max-width: 1200px;
    align-items: center;
    gap: 60px;
}
.features-block {
    padding: 80px 5%;
    background: 
        linear-gradient(
            rgba(10, 15, 28, 0.85),
            rgba(10, 15, 28, 0.85)
        ),
        url("homebg.jpg") center / cover no-repeat;
}

.hero-text {
    flex: 1;
    margin-left: 0%;
    max-width: 560px;          /* FIXED: good readable width */
    text-align: left;
    padding-left: 2%;
}

.hero-image {
    flex: 1;
}

/* Heading */
.hero-text h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 10px;
    color: rgb(17, 18, 99);
    word-break: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
}
.hero-text h3{
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 20px;
    color: rgb(21, 23, 119);
    word-break: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
}

/* Paragraph */
.hero-text p {
    color: #000;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 520px;          /* keeps paragraph neat */
}


.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-fill {
    background: linear-gradient(135deg, #1d61c7, #7aace6);
    border:1px solid rgb(252, 252, 252);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}

.btn-border {
    background: transparent;
    border: 1px solid rgb(251, 251, 252);
    color: #00063bff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}
/* HERO BANNER */
.hero-banner {
  position: relative;
  min-height: 80vh; /* Taller for a hero section */
  display: flex;
  align-items: center;
  background-color: #99C5E8;
  /* Replace with your image path */
  background: url('pbg.jpg') no-repeat center left/cover;
  padding: 60px 0;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 100%);
  z-index: 1;
}

.container-hero {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.spacer {
  flex: 1; /* This pushes the text box to the right */
}

.-text-product {
  flex: 1;
  max-width: 500px; /* Limits width so text doesn't stretch too far */
  text-align: left;
}

.brand-tag {
  color: #243446;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}
.hero-text-product {
    flex: 1;
    margin-left: 0%;
    max-width: 560px;          /* FIXED: good readable width */
    text-align: left;
    padding-left: 2%;
}
.hero-text-product h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 10px;
    color: rgb(17, 18, 99);
    word-break: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
}
.hero-tex-product h3 {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 20px;
    color: rgb(21, 23, 119);
    word-break: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.hero-text-product p {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 30px;
}

.primary-btn {
  padding: 15px 35px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  transition: 0.3s ease;
}

.primary-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* Mobile View: Stack text centrally */
@media (max-width: 992px) {
  .spacer { display: none; }
  .hero-text { 
    max-width: 100%; 
    text-align: center;
    background: rgba(255,255,255,0.8);
    padding: 30px;
    border-radius: 20px;
  }
  .hero-banner { background-position: center;background-color: #99C5E8; }
}
    .hero-text {
        max-width: 100%;
    }

    .hero-image img {
        max-width: 320px;
    }

/* --- Features Block (The Vertical Stack Fix) ---
.features-block {
    width: 100%;
    padding: 100px 5%;
    display: flex;
    flex-direction: column; /* Force Title on top of Slider */
    /* align-items: center;
}

.key-features-title {
    font-size: 3rem;
    color:#00063bff;
    margin-bottom: 60px;
    text-align: center;
} */

/* --- Slider Alignment --- */
/* .carousel-wrapper {
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 25px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.glass-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
} */ 
 /* Section */
.features-block {
    padding: 80px 5%;
    background: #ffffff;
}

/* Title */
.key-features-title {
    text-align: center;
    font-size: 2.5rem;
    color: #021e79;
    margin-bottom: 50px;
}

/* Cards Container */
.features-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Individual Card */
.feature-card {
    width: 300px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(117, 119, 119, 0.904);
}

/* Image */
.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Content */
.card-content {
    padding: 20px;
    text-align: center;
}

.card-content h3 {
    color: #041d6d;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card-content p {
    color: #050747;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ---- HERO IMAGE 3D HOVER ---- */
.hero-image img {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  animation: cloudFloat 6s ease-in-out infinite;
}
.hero-image img:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow:
    0 30px 70px rgba(0, 210, 255, 0.35),
    0 0 60px rgba(0, 210, 255, 0.25);
}

/* ---- BUTTON HOVER (CLOUDY GLOW) ---- */
.btn-fill,
.btn-border {
  transition: all 0.4s ease;
}

.btn-fill:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 12px 30px rgba(117, 117, 117, 0.5),
    inset 0 0 20px rgba(61, 168, 192, 0.3);
}

.btn-border:hover {
  background: rgba(0, 210, 255, 0.15);
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 12px 30px rgba(117, 117, 117, 0.5),
    inset 0 0 20px rgba(61, 168, 192, 0.3);
}

/* ---- SLIDE 3D HOVER ---- */
.slide {
  transition: transform 0.6s ease;
  perspective: 1200px;
}

.slide:hover {
  transform: translateY(-10px) scale(1.02);
}

/* ---- IMAGE INSIDE SLIDE ---- */
.slide img {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.slide:hover img {
  transform: scale(1.03);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.6),
    0 0 50px rgba(0, 210, 255, 0.25);
}

/* ---- GLASS CAPTION CLOUD EFFECT ---- */
.glass-caption {
  transition: all 0.6s ease;
}

.slide:hover .glass-caption {
  transform: translateX(-50%) translateY(-6px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow:
    0 15px 40px rgba(0, 210, 255, 0.4),
    inset 0 0 30px rgba(255,255,255,0.25);
}

.nav-item:hover {
  color: #ffffff;
}

/* ---- FLOATING CLOUD MOTION (VERY SOFT) ---- */
@keyframes cloudFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}


.carousel-wrapper {
  animation: cloudFloat 7s ease-in-out infinite;
}
/* --- Background Matching Home Page --- */
.how-works-dark-theme {
    padding: 0px 0 100px 0;
    color: white;
    min-height: 100vh;
}


.page-title-center {
    text-align: center;
    font-size: 3rem;
    color:  #ff0000;
    margin-bottom: 60px;
    font-weight: 700;
}

/* --- Top System Card (Glass Style) --- */
.intro-glass-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
    padding: 0 5%;
}

.system-glass-card {
    background: rgba(2, 54, 88, 0.295);
    backdrop-filter: blur(15px); /* Frosty glass effect */
    border: 1px solid rgba(255, 255, 255, 1);
    width: 100%;
    max-width: 1000px;
    padding: 40px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.6s ease;
}

.glass-icon-box img { width: 70px; }
.how-it-works-banner {
    position: relative;
    min-height: 70vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    /* Replace URL with your actual image path */
    background: url('HIW2.jpg') no-repeat center center/cover;
    padding: 20px;
    overflow: hidden;
}

/* Darkens the image slightly to make text pop */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(155, 191, 228, 0.8) 0%, rgba(167, 168, 168, 0.4) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-title-center {
    font-family: 'Inter', sans-serif; /* Modern font */
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.banner-subtext {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}


/* Title */
.page-title-center {
    font-size: 3rem;
    margin-bottom: 20px;
    margin-top: 75px;
    color: #02048a;
}

/* Subtitle text */
.banner-subtext {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #011c3d;
}
/* Center content in timeline gap */
.timeline-center-content {
    position: relative;
    top: 120px;                 /* adjust vertically if needed */
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    text-align: center;
    z-index: 5;
}

/* Heading */
.timeline-center-content h2 {
    font-size: 2.5rem;
    color: #031d64;
    margin-bottom: 10px;
}

.timeline-center-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #101161;
    padding-bottom: 200px;
}
.timeline-v-section {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.center-v-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 100%;
    background: rgb(1, 71, 129); 
}

.v-step-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0px;
    width: 100%;
    perspective: 1000px;
    position: relative;
}
.v-step-icon {
    width: 50%;
    display: flex;
    /* justify-content: center;
    align-items: center; */
    padding-left: 3.2%;
}

.v-step-icon img {
    width: 90px;
    height: auto;
    opacity: 0.9;
}
.v-step-icon-left {
    width: 50%;
    display: flex;
    /* justify-content: center;
    align-items: center; */
    padding-left: 35%;
}

.v-step-icon-left img {
    width: 90px;
    height: auto;
    opacity: 0.9;
    /* filter: drop-shadow(0 10px 20px rgba(0, 150, 255, 0.35)); */
}

/* This creates the Zig-Zag effect */
.v-step-row.reverse {
    flex-direction: row-reverse; /* Default order if card is left */
}

.v-step-card-glass, .v-step-media {
    width: 45%;
}

.v-step-row.reverse .v-step-card-glass {
    margin-right: 0;
    margin-left: 5%;
}
/* Reduce gap between icon and card (step 2 specifically) */
.v-step-row.reverse .v-step-icon img {
    transform: translateX(290px);
}


/* Transparent Glass Cards */
.v-step-card-glass {
    background: rgb(141, 198, 236);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    padding: 40px;
    border-radius: 25px;
     margin-right: 5%;
    text-align: left;
    transition: all 0.6s ease;
    box-shadow: 5px 5px 5px 5px rgba(1, 30, 68, 0.322);
}

.v-step-card-glass h3 {
    color: rgb(7, 15, 88);
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.v-step-card-glass p {
    color: rgb(17, 24, 121);
    line-height: 1.6;
}

/* Central Numbered Dots */
.v-step-dot {
   position: absolute;
   left: 50%;     
   top: 50%;                 /* 👈 CENTER ON LINE */
   transform: translate(-50%, -50%);    /* 👈 PERFECT CENTER */
  
    transition: all 0.4s ease;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: #68e3ff;
    color: #020814;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 10;
    border:1px solid #020d2c;

    box-shadow: 0 0 20px rgba(0, 206, 252, 0.5);
}

/* Glass Buttons */
.glass-btn {
    background: #ff5252;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    margin-top: 20px;
    cursor: pointer;
    font-weight: 600;
}
.glass-text-box h3{
  color:#ff0000;
}
.glass-text-box p{
color: black;
}
.system-glass-card:hover {
  transform: translateY(-10px);
  background:  rgba(2, 54, 88, 0.295);
  border-color: rgba(243, 243, 245, 1) ;
  box-shadow:
    0 30px 70px rgba(1, 53, 65, 0.329),
    inset 0 0 30px rgba(255,255,255,0.15);
}

.v-step-media img:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow:
    0 35px 80px rgba(0, 210, 255, 0.35),
    0 0 50px rgba(0, 210, 255, 0.25);
}
.v-step-card-glass:hover {
  transform: translateY(-8px);
  background: rgba(147, 195, 204, 0.521);
  box-shadow:
    0 25px 60px rgba(45, 45, 48, 0.25),
    inset 0 0 30px rgba(78, 78, 78, 0.15);
}



/* ---------- GLASS BUTTON HOVER ---------- */
.glass-btn {
  transition: all 0.4s ease;
}

.glass-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 15px 40px rgba(255, 82, 82, 0.6),
    0 0 25px rgba(255, 82, 82, 0.5);
}

/* ---------- ICON CLOUD FLOAT (SOFT) ---------- */
@keyframes cloudFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.glass-icon-box img {
  animation: cloudFloat 6s ease-in-out infinite;
  transition: transform 0.5s ease;
}

.glass-icon-box img:hover {
  transform: scale(1.12);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.contact-banner-clean {
  width: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  /* Matching your existing page colour as the base */
  background-color: #99C5E8; 
  background-image: url('supportbg.jpeg');
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Gradient that fades your image into the solid light blue on the right */
.banner-overlay-match {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(153, 197, 232, 0) 10%, rgba(153, 197, 232, 0.95) 60%);
  z-index: 1;
}

.banner-container {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
}

.banner-spacer {
  flex: 1.1; /* Keeps the text from overlapping the left-side image */
}

.banner-content-right {
  flex: 0.9;
  text-align: left;
}

.tagline-small {
  color: #2C5282; /* Deep blue for professional contrast */
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.title-professional {
  font-size: 40px;
  color: #1A365D; /* Navy blue for authority */
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.description-text {
  font-size: 15px;
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 400px;
}

.contact-links-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.label-tiny {
  display: block;
  font-size: 12px;
  color: #718096;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-anchor {
  font-size: 18px;
  color: #1A365D;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.contact-anchor:hover {
  opacity: 0.7;
}

/* Clean, Icon-free PDF Link */
.resource-border {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 54, 93, 0.1);
}

.pdf-button-clean {
  display: inline-block;
  font-size: 14px;
  color: #1A365D;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 20px;
  border: 1.5px solid #1A365D;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.pdf-button-clean:hover {
  background-color: #1A365D;
  color: #ffffff;
}

/* Responsive adjustment for tablets/phones */
@media (max-width: 900px) {
  
  .hamburger {
    display: flex;
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 3000;
  }
  .nav-container,
  .floating-nav,
  .action-box {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  .nav-item {
   width: 100%;
  text-align: center;
  padding: 10px 12px;
}
  .nav-container.active,
  .nav-container.active .floating-nav,
  .action-box.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .nav-container.active {
    position: fixed;
    top: 60px;      
    right: 10px;    
    flex-direction: column;
    gap: 10px;
    padding-left: 80%;
    width: auto; 
  }
  .nav-container.active .nav-item.active {
    background: linear-gradient(90deg, #2d8cf0, #00c6ff);
    color: rgb(11, 75, 128) !important;
    padding: 0px;
    border-radius: 30px;
   padding: 10px 14px;
  }
  .action-box.active{
    margin-top: 5%;
    padding-left: 80%;
    width:auto;
  }
.get-started-btn {
  padding: 8px 14px;
  width: auto;
  white-space: nowrap;
  display: inline-flex;
}
  .floating-nav { align-items: flex-end;  
    width: max-content; 
   display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: max-content;     
  min-width: unset;         
    border-radius: 18px;
    padding: 10px;        
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  .logo-container {
    position: fixed;
    top: 25px; 
    left: 0px;
    z-index: 1001; 
}
.logo-glass {
    width: 60px;
    height: 40px;
    position: fixed;
    top: 20px;
    left: 5px;
    z-index: 1000;
    display: flex;
    gap: 0px;
    align-items: center;
    padding: 10px 10px;
    backdrop-filter: blur(10px);
    border-radius: 20px; 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.logo-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.logo-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a4a9e; 
    letter-spacing: -0.5px;
}
.hero-section {
    padding: 80px 3% 60px 2%;
    width: 100%;
    display: flex; 
    background-image: url("homebg.jpg");
    background-size: contain;
    justify-content: center;
}
.hero-container,
  .hero-text {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }
  .banner-spacer { display: none; }
  .banner-content-right { 
    margin: 0 auto; 
    text-align: center;
    max-width: 100%;
  }
  .banner-overlay-match {
    background: rgba(153, 197, 232, 0.95);
  }
}
/* ---------- CLOUDY GLOW ANIMATION (OPTIONAL, SUBTLE) ---------- */
@keyframes cloudGlow {
    0% { box-shadow: 0 0 15px rgba(0,210,255,0.25); }
    50% { box-shadow: 0 0 35px rgba(0,210,255,0.45); }
    100% { box-shadow: 0 0 15px rgba(0,210,255,0.25); }
}
/* 1. Global Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  
}

/* 3. Header Styling */
header {
  padding: 20px 0;
  position: relative;
  z-index: 10;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Area */
.logo-placeholder {
  display: flex;
  align-items: center;
  background: white; /* White pill for logo as seen in Image 2 */
  padding: 5px 15px;
  border-radius: 30px;
  color: #0f172a; /* Dark text for contrast inside white pill */
}

.logo img {
  height: 24px;
  margin-right: 8px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
}

/* 4. Navigation Pill (The Glassmorphism Bar) */
.nav-center {
  background: rgba(255, 255, 255, 0.05); /* Semi-transparent background */
  padding: 8px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link {
  text-decoration: none;
  color: #cbd5e1; /* Light gray text */
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
}

/* Active State (The Blue Button inside Nav) */
.nav-link.active {
  background: linear-gradient(90deg, #0ea5e9, #2563eb); /* Cyan to Blue */
  color: white;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
}

/* 5. Buttons (Gradient Glow) */
.primary-btn {
  border: none;
  cursor: pointer;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  transition: transform 0.2s ease;
}

.glow-btn {
  background: linear-gradient(90deg, #0ea5e9, #2563eb);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.5); /* Glowing effect */
}

.glow-btn:hover {
  transform: scale(1.05);
}

/* 6. Hero Section Layout */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 160px; /* Space from header */
  gap: 50px;
}

.hero-text {
  flex: 1;
  max-width: 8000px;
}


.hero p {
  font-size: 1.1rem;
  color: #000000; 
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-btn {
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  font-size: 1.1rem;
  padding: 15px 40px;
}

.hero-btn:hover {
  opacity: 0.9;
}

/* Image styling to fit the dark theme */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 300%;
  max-width: 500px;
  border-radius: 40px;
  height: 250%;
  box-shadow: 0 20px 50px rgba(148, 146, 146, 0.5); /* Deep shadow for depth */
  border: 1px solid rgba(185, 174, 174, 0.1); /* Subtle border */
}

/* Mobile Responsiveness */
/**@media (max-width: 768px) {

  .page-title-center { font-size: 2.5rem; }
  .banner-subtext { font-size: 1.1rem; }
  .nav-container {
    display: none !important;
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 2000;
  }
  .nav-container.active {
    display: flex !important;
  }
  .floating-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 220px;
    padding: 20px;
    border-radius: 20px;
  }
  .nav-item {
    width: 100%;
    padding: 12px 0;
    color: rgb(11, 75, 128);
  }
   .nav-item.active {
    background: none !important;
    box-shadow: none !important;
  }
  .action-box {
    display: none !important;
  }

  .action-box.active {
    display: block !important;
    margin-top: 10px;
  }

  .hamburger {
    display: flex;
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 3000;
  }
}**/


  .feature-item {
  background: radial-gradient(circle at top center, #1e293b, #0f172a 80%);
  color: #0905da;
  min-height: 600vh;
  overflow-x: hidden;
   }
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #00063bff;
  margin-bottom: 60px;
}

.cards-grid {
  display: flex;
  justify-content: center;
  gap: 34px; 
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.card {
  width: 220px;
  height: 300px;
  border-radius: 30px;
  
  background:  rgba(144, 174, 201, 0.808);
  box-shadow: 
    10px 10px 20px #44495331,  
    -10px -10px 20px #212f46; 
    
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
  border: 10% solid navy;

}


/* --- Content Inside the Card --- */
.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05); /* Subtle circle behind icon */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  width: 40px;
  height: 40px;
}

.card h3 {
  font-size: 1.1rem;
  color:rgb(255, 0, 0);
  margin-bottom: 10px;
}

.card:hover h3 {
  font-size: 1.1rem;
  color: #04035a; /* Light Blue Text */
  margin-bottom: 10px;
}

.card p {
  font-size: 0.85rem;
  color: black;
  line-height: 1.4;
}

/* Section & Container Setup */
.features-section {
    padding: 80px 20px;
    background: #f6f9fe; /* Light blue background for contrast */
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1000px; /* Keeps the 2x2 grid compact and centered */
    text-align: center;
}

.section-title {
    color: #030575; /* Navy Blue from Medslan logo */
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-family: sans-serif;
}

/* 2x2 Grid Logic */
.cards-grid {
    display: grid;
    /* This forces exactly 2 equal columns as per your sketch */
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px; 
    justify-items: center;
}

.card {
    background: #a9c6df;
    border-radius: 25px;
    padding: 40px 30px;
    width: 100%;
    max-width: 420px; /* Prevents cards from becoming too wide */
    
    /* Layout inside the card */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    /* Shadow and Border */
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.08);
    border: 1px solid rgba(0, 51, 102, 0.03);
    transition: all 0.4s ease;
}

/* Hover Effect: Turns Navy with White Text */
.card:hover {
    transform: translateY(-12px);
    background: #93bbe2; /* Deep Navy Blue */
    box-shadow: 0 25px 50px rgba(0, 51, 102, 0.25);
}

/* Icon & Content Styles */
.card-icon {
    height: 80px;
    margin-bottom: 20px;
}

.card-icon img {
    width: 60px;
    height: auto;
}

.card h3 {
    font-size: 1.5rem;
    color: #030575;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

/* Card Button Style */
.card-btn {
    background: #ff5c5c; /* Coral Red button */
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

/* Text color change on hover */
.card:hover h3, 
.card:hover p {
    color: #ffffff;
}

.card:hover .card-btn {
    background: #ffffff;
    color: #ff5c5c;
}

/* Mobile Responsive: Stacks to 1 column */
@media (max-width: 850px) {
    
  .hamburger {
    display: flex;
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 3000;
  }
  .nav-container,
  .floating-nav,
  .action-box {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  .nav-item {
   width: 100%;
  text-align: center;
  padding: 10px 12px;
}
  .nav-container.active,
  .nav-container.active .floating-nav,
  .action-box.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .nav-container.active {
    position: fixed;
    top: 60px;      
    right: 10px;    
    flex-direction: column;
    gap: 10px;
    padding-left: 80%;
    width: auto; 
  }
  .nav-container.active .nav-item.active {
    background: linear-gradient(90deg, #2d8cf0, #00c6ff);
    color: rgb(11, 75, 128) !important;
    padding: 0px;
    border-radius: 30px;
   padding: 10px 14px;
  }
  .action-box.active{
    margin-top: 5%;
    padding-left: 80%;
    width:auto;
  }
.get-started-btn {
  padding: 8px 14px;
  width: auto;
  white-space: nowrap;
  display: inline-flex;
}
  .floating-nav { align-items: flex-end;  
    width: max-content; 
   display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: max-content;     
  min-width: unset;         
    border-radius: 18px;
    padding: 10px;        
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  .logo-container {
    position: fixed;
    top: 25px; 
    left: 0px;
    z-index: 1001; 
}
.logo-glass {
    width: 60px;
    height: 40px;
    position: fixed;
    top: 20px;
    left: 5px;
    z-index: 1000;
    display: flex;
    gap: 0px;
    align-items: center;
    padding: 10px 10px;
    backdrop-filter: blur(10px);
    border-radius: 20px; 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.logo-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.logo-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a4a9e; 
    letter-spacing: -0.5px;
}
.hero-section {
    padding: 80px 3% 60px 2%;
    width: 100%;
    display: flex; 
    background-image: url("homebg.jpg");
    background-size: contain;
    justify-content: center;
}
.hero-container,
  .hero-text {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }
}
.site-footer {
    background: linear-gradient(135deg, #101a31, #022f72);
    color: #ffffff;
    padding: 50px 8% 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Left */
.footer-left {
    max-width: 260px;
}

.footer-logo {
    width: 60px;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #cfd8e3;
}

/* Center */
.footer-center h4,
.footer-right h4 {
    margin-bottom: 15px;
    color: #00d4ff;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #00d4ff;
}

/* Right */
.footer-right p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #cfd8e3;
}

.footer-right a {
    color: #ffffff;
    text-decoration: none;
}

.footer-right a:hover {
    color: #00d4ff;
}

/* Bottom bar */
.footer-bottom {
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    font-size: 0.85rem;
    color: #cfd8e3;
}

















/* ==========================================
   URGENT PROFESSIONAL MOBILE FIX 
   ========================================== */

@media (max-width: 1024px) {
    /* 1. Prevent overlapping on the whole site */
    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    body, html {
        overflow-x: hidden !important;
        height: auto !important;
    }
    .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
    
.hamburger span {
  width: 26px;
  height: 3px;
  background: #0b4b80;
  border-radius: 2px;
}

/* Top Navigation Bar */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    border-bottom: 1px solid var(--glass-border);
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: 0.3s;
}

.nav-links a:hover, .active {
    opacity: 1;
    color:rgb(0, 0, 0);

}

/* Page Content Area */
.content-body {
    padding: 40px;
    flex-grow: 1;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: #a9c6df;
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s ease;
    border:navy; 
}

.btn-explore {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 12px 35px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 20px;
    letter-spacing: 2px;
}

.btn-explore:hover {
    background: white;
    color: #1c70ee;
}
.logo-container {
    position: fixed;
    top: 25px; 
    left: 40px; 
    z-index: 1001; 
}

.logo-glass {
    width: 100px;
    height: 60px;
    position: fixed;
    top: 15px;
    left: 10px;
    z-index: 1000;
    display: flex;
    gap: 0px;
    align-items: center;
    padding: 8px 20px;
    backdrop-filter: blur(10px);
    border-radius: 50px; 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a4a9e; /* Darker blue to match your screenshot logo text */
    letter-spacing: -0.5px;
}


/** nva  bar**/
/* Container to center the nav bar at the top */
.nav-container {
    position: fixed;
    top: 20px;
    width: 100%;
    display: flex;
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
}

.floating-nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Soft shadow */
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-item {
    text-decoration: none;
    color: rgb(11, 75, 128);
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    border-radius: 40px;
}

/* The Blue Active  look from your screenshot */
.nav-item.active {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(58, 123, 213, 0.4);
}

.nav-item:hover:not(.active) {
    color: #000000;
    background: rgba(58, 123, 213, 0.05);
}


/* Centering the navbar at the top */
.nav-wrapper {
    position: fixed;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.medslan-nav {
    display: flex;
    align-items: center;
    padding: 6px 8px; /* Tight padding to match screenshot */
    background: rgba(255, 255, 255, 0.95); /* Bright white with slight transparency */
    backdrop-filter: blur(10px);
    border-radius: 50px; /* Perfect capsule shape */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft floating shadow */
    border: 1px solid rgba(255, 255, 255, 0.3);
}


.get-started-btn {
    /* Exact Blue Gradient from your screenshot */
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
    
    /* Text Styling */
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    
    /* Shape and Layout */
    padding: 12px 30px;
    border-radius: 50px; /* Perfect pill shape */
    border: none;
    cursor: pointer;
    
    /* Floating Effect */
    box-shadow: 0 8px 20px rgba(58, 123, 213, 0.35);
    
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    position: fixed;
    top: 25px;
    right: 40px;
    z-index: 2001;
}

.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(58, 123, 213, 0.5);
    filter: brightness(1.05);
}

.get-started-btn:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(58, 123, 213, 0.3);
    }

    h1, h2, .main-heading, .page-title-center {
        font-size: 24px !important;
        text-align: center !important;
        width: 90% !important;
        margin: 20px auto !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
    }
  .container-hero {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin-top:8%;
  padding: 0 40px;
  
}

.spacer {
  flex: 1; /* This pushes the text box to the right */
}

.hero-text {
  flex: 1;
  max-width: 500px; /* Limits width so text doesn't stretch too far */
  text-align: left;
}

.brand-tag {
  color: #243446;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  display: block;
  margin-left: 27%;
}

.hero-text h1 {
  font-size: 3rem;
  color: #1a2b4b;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-text p {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 30px;
}
.primary-btn {
  background: #007bff;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 12px 50px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  transition: transform 0.2s ease;
  margin-left:30%;
}

.primary-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}


    .circular-layout, .use-cases-container, .timeline-v-section {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        height: auto !important;
        padding: 40px 10px !important;
    }

    .hub-center, .penta-tile, [class*="tile-"], .system-glass-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 20px auto !important;
        width: 90% !important;
        max-width: 350px !important;
    }

    /* Hide the vertical background bar that causes visual clutter on mobile */
    .timeline-line, .vertical-bar {
        display: none !important;
    }

    /* 5. Fix Cards and Grids (Image 586220.png) */
    .cards-container, .features-cards {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        padding: 20px !important;
    }

    .card, .feature-card, .glass-card {
        width: 95% !important;
        margin: 10px auto !important;
    }

    /* 6. Fix Contact & Footer (Image 587105.png / 58717f.png) */
    .footer-content, .contact-container {
        flex-direction: column !important;
        text-align: center !important;
        padding: 20px !important;
    }

    .footer-links, .quick-links, .support-info {
        width: 100% !important;
        margin-bottom: 20px !important;
    }
}

@media (max-width: 768px) {

  .hamburger {
    display: flex;
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 3001;
  }
  .nav-container,
  .floating-nav
  /*.action-box*/ {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: fit-content !important;
    max-width: unset !important;
    min-width: unset !important;
  }
  .nav-container {
  position: fixed;
  top: 0px;       
  right: 50%;
  display: none;
    
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  z-index: 2999;
}
 .nav-item {
  background: transparent !important;
  padding: 5px 5px;
  border-radius: 10px;
  white-space: nowrap;
  text-align: left;
}

  .nav-container.active,
  .nav-container.active .floating-nav
/*.action-box.active*/ {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .nav-container.active {
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  width:max-content;
}

  .nav-container.active .nav-item.active {
    background: linear-gradient(90deg, #2d8cf0, #00c6ff);
    color: rgb(11, 75, 128) !important;
    border-radius: 10px;

  }
 .floating-nav {
  display: flex;
  position:fixed;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-right:15%; 
  margin-top: 18%;
  padding-bottom: 10px;
  border-radius: 20px;
  background: transparent !important;
  box-shadow: none !important;
  width:max-content;
}
  .logo-container {
    position: fixed;
    top: 25px; 
    left: 0px;
    z-index: 1001; 
}
.logo-glass {
    width: 60px;
    height: 40px;
    position: fixed;
    top: 20px;
    left: 5px;
    z-index: 1000;
    display: flex;
    gap: 0px;
    align-items: center;
    padding: 10px 10px;
    backdrop-filter: blur(10px);
    border-radius: 20px; 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.logo-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.logo-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a4a9e; 
    letter-spacing: -0.5px;
}
.hero-section {
    padding: 80px 5% 80px 0%;
    width: 100%;
    display: flex; 
    background-image: url("homebg.jpg");
    background-size: cover;
    justify-content: center;
}
.hero-text-product {
    flex: 1;
    margin-left: 37%;
    max-width: 560px;          
    text-align: left;
    padding-left: 2%;
}
.hero-text-product h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 10px;
    color: rgb(17, 18, 99);
    word-break: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
}
.hero-tex-product h3 {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 20px;
    color: rgb(21, 23, 119);
    word-break: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.hero-text-product p {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 30px;
}

.primary-btn {
  padding: 15px 35px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  transition: 0.3s ease;
}

.primary-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);

}
  .timeline-center-content {
    position: relative;
    top: 120px;                 
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    text-align: center;
    z-index: 5;
}
.timeline-center-content h2 {
    font-size: 2.5rem;
    color: #031d64;
    margin-bottom: 10px;
}
.timeline-center-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #101161;
}
.timeline-v-section {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 80 auto;
    padding-top: 1000px;
}
.center-v-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 93%;
    background: rgb(1, 71, 129);
}
.v-step-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0px;
    width: 100%;
    perspective: 1000px;
    position: relative;
}
.v-step-icon {
    width: 50%;
    display: flex;
    padding-left: 6%;
}

.v-step-icon img {
    width: 90px;
    height: auto;
    opacity: 0.9;
}
.v-step-icon-left {
    width: 50%;
    display: flex;
    padding-left: 25%;
}

.v-step-icon-left img {
    width: 90px;
    height: auto;
    opacity: 0.9;
}

.v-step-row.reverse {
    flex-direction: row-reverse; 
  }

.v-step-card-glass, .v-step-media {
    width: 45%;
}

.v-step-row.reverse .v-step-card-glass {
    margin-right: 0;
    margin-left: 5%;
}

.v-step-row.reverse .v-step-icon img {
    transform: translateX(290px);
}

.v-step-card-glass {
    background: rgb(141, 198, 236);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    padding: 40px;
    border-radius: 25px;
     margin-right: 5%;
    text-align: left;
    transition: all 0.6s ease;
    box-shadow: 5px 5px 5px 5px rgba(1, 30, 68, 0.322);
}

.v-step-card-glass h3 {
    color: rgb(7, 15, 88);
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.v-step-card-glass p {
    color: rgb(17, 24, 121);
    line-height: 1.6;
}

.v-step-dot {
   position: absolute;
   left: 50%;     
   top: 50%;                
   transform: translate(-50%, -50%);     
    transition: all 0.4s ease;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: #68e3ff;
    color: #020814;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 10;
    border:1px solid #020d2c;
    box-shadow: 0 0 20px rgba(0, 206, 252, 0.5);
}
.v-step-media img:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow:
    0 35px 80px rgba(0, 210, 255, 0.35),
    0 0 50px rgba(0, 210, 255, 0.25);
}
.v-step-card-glass:hover {
  transform: translateY(-8px);
  background: rgba(147, 195, 204, 0.521);
  box-shadow:
    0 25px 60px rgba(45, 45, 48, 0.25),
    inset 0 0 30px rgba(78, 78, 78, 0.15);
}
.card{
  background: #a9c6df;
}
}
@media(max-width:428px){
  .cards-grid{
    grid-template-columns: 1fr;
  }
  .nav-container {
  position: fixed;
  top: 0px;       
  right: 50%;
  display: none;
    
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  z-index: 2999;
}
 .nav-item {
  background: transparent !important;
  padding: 0px 0px;
  border-radius: 10px;
  white-space: nowrap;
  text-align: left;
}

  .nav-container.active {
  display: flex !important;
  flex-direction: column;
  gap: 0px;
  width:max-content;
}

 .floating-nav {
  display: flex;
  position:fixed;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-right:33%; 
  margin-top: 32%;
  padding-bottom: 10px;
  border-radius: 20px;
  background: transparent !important;
  box-shadow: none !important;
  width:max-content;
}
.hero-section {
    padding: 2px 2% 2px 2%;
    width: 100%;
    display: flex; 
    background-image: url("homebg.jpg");
    background-size: contain;
    justify-content: center;
}
.hero-text-product {
    flex: 1;
    margin-left: 37%;
    max-width: 560px;         
    text-align: left;
    padding-left: 2%;
}
.hero-text-product h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 10px;
    color: rgb(17, 18, 99);
    word-break: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
}
.hero-tex-product h3 {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 20px;
    color: rgb(21, 23, 119);
    word-break: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.hero-text-product p {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 30px;
}

.primary-btn {
  padding: 15px 35px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  transition: 0.3s ease;
}

.primary-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.timeline-center-content p{
  padding:20px;
}
.center-v-line,.v-step-dot{
  display: none;
}
.v-step-row{
  margin-top: 20%;
}
.v-step-card-glass{
  display: grid;
  grid-template-columns: 1fr; 
  gap: 30px;
  justify-items: center;
  width: max-content;
}
.v-step-icon-left{
  margin-left: 0%;
  padding-left: 2px;
}
.card{
    background: #a9c6df;
}
}
@media(max-width:590){
  .cards-grid{
    grid-template-columns: 1fr;
  }
}