:root{
      --bg-1:#04150d;   /* deepest green */
      --bg-2:#0b3b22;   /* mid green */
      --accent:#49ca70; /* neon green */
      --accent-2:#54ff8d; /* pale glow */
      --ink:#e9ffee;   /* off-white */
      --muted:#a6c6b1;
      --glass:rgba(255,255,255,0.06);
      --glass-stroke:rgba(255,255,255,0.18);
      --shadow:0 10px 40px rgba(0,0,0,.45);

      /* responsive hero typography control */
      --h1-min:2.4rem;
      --h1-vw:7.5vw; /* preferred scaling factor */
      --h1-max:6.2rem;
    }

    *{box-sizing:border-box}
    html,body{height:100%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%;}
    body{
      margin:0; font-family:"Sora",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; color:var(--ink);
    }

    /* Floating top nav (glass) */
    .nav{
      position:fixed; left:50%; transform:translateX(-50%);
      top:18px; z-index:50; flex-direction: column;
      display:flex; align-items:center; gap:.6rem; padding: .7rem .8rem 0rem;
      background:var(--glass); backdrop-filter:blur(10px); border:1px solid var(--glass-stroke);
      border-radius:50px; box-shadow:var(--shadow);
    }
    .nav .nav-links{ display:flex; align-items:center; gap:.6rem; }
    .nav .nav-links a{ color:white; text-decoration:none; font-weight:600; font-size:.9rem; opacity:.85; padding:.5rem .8rem; border-radius:999px }
    .nav .brand{ font-weight:800; letter-spacing:.2px; padding:.45rem .9rem; border-radius:999px; background:linear-gradient(120deg,#9dffb6, #47f28a 45%, #10c56a);
      -webkit-background-clip:text; background-clip:text; color:transparent; font-size:.98rem}

    /* Collapsible container sits visually attached to bottom of nav */
    .nav-collapse{ box-sizing:border-box; width:100%; overflow:hidden; max-height:0; transition: max-height .32s cubic-bezier(.2,.9,.2,1), padding .28s; border-radius:12px; }
    .nav-collapse .collapse-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 1rem 1rem; padding:0; margin-bottom: 10px; }
    .nav-collapse a{ display:block; padding:.5rem .6rem; color:white; text-decoration:none; border-radius:8px; font-weight:600 }
    .nav-collapse a:hover{ background:var(--accent); }

    /* service image icon styling */
    .nav-collapse a img.service-icon{ width:20px; height:20px; object-fit:contain; margin-right:0.6rem; vertical-align:middle; }
    .nav-collapse a .service-label{ vertical-align:middle; }

    /* Expanded state - also make nav fill solid so underlying text isn't visible */
    .nav.expanded{ flex-direction: column; align-items: center; background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-stroke);
    border-radius: 20px;
    box-shadow: var(--shadow); }
    .nav.expanded .nav-links{ flex-wrap:wrap; justify-content:center; border-bottom: 1px solid var(--glass-stroke); padding-bottom: 10px; }
    .nav.expanded .nav-collapse{ max-height:260px; padding:.9rem .9rem .6rem .9rem; width:100%; }

    /* Hero */
    .hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: #00003b;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills hero like a background */
  z-index: 0;
  opacity: 0.2;       /* tweak transparency */
}

    canvas.particles{ position:absolute; inset:0; width:100%; height:100%; z-index:0; }

    .content{ position:relative; z-index:1; width:min(1500px,92vw); display:grid; grid-template-columns: 1.25fr .9fr; gap:3vw; align-items:center; }

    .eyebrow{font-size:.85rem; letter-spacing:.25rem; text-transform:uppercase; color:var(--muted)}
    h1{ margin: .4rem 0px 1rem -10px;
    font-size: 6rem;
    line-height: .95;
    font-weight: 800;
    letter-spacing: -.02em;
    color: white;}
    h1 .soft{ color: #54ff8d;}

    .lede{ color:white; max-width:50ch; line-height:1.6; }

    .actions{ display:flex; gap:12px; align-items:center; margin-top:1.6rem }
    .btn{ font-size: 16px; display:inline-flex; align-items:center; gap:.55rem; padding:.9rem 1.1rem; border-radius:999px; cursor:pointer; background:var(--glass); color:var(--ink); border: 2px solid var(--accent-2); font-weight:700; font-family: 'sora'; }
    .btn:hover{ background:rgba(255,255,255,.1) }
    .btn.primary{ background:linear-gradient(135deg,#20f49b,#0b9f5b); color:#071d13; border:none; box-shadow: 0 8px 25px rgba(0,0,0,.35)}

    .scroll{ position:fixed; left:28px; bottom:22px; z-index:5; font-size:.9rem; color:var(--muted); display:flex; align-items:center; gap:.6rem; opacity:.85 }
    .scroll .dot{ width:6px; height:6px; background:var(--accent); border-radius:50%; box-shadow:0 0 12px var(--accent)}
    .hero-logo{display: none;}


    /* About Section */
  .about-section {
  position: relative;
    background: #00003b;
    padding: 2rem 0rem 5rem;
    color: #e9ffee;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    border-bottom: 2px inset #54ff8d;
    border-top: 2px inset #54ff8d;
}


.about-section::after {
  content: "";
  position: absolute;
  inset: 0; /* cover entire section */
  background: url("images/CertBg.png") center/cover no-repeat;
  opacity: 1; /* adjust brightness */
  z-index: 0;
}

.about-section .wrapper {
  position: relative;
  z-index: 2; /* keep text above the line image */
  max-width: 1200px;
  margin: 0 auto;
}

.about-section .title {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 100;
  line-height: 1.2;
  margin-bottom: 1rem;
  margin-top: 93px;
  letter-spacing: -4px;
}

.about-section .accent {
  color: #54ff8d;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  margin-top: 3rem;
}

.feature h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: .6rem;
}

.feature p {
  color: #a6c6b1;
  line-height: 1.6;
  font-size: .95rem;
  background: #00003b;
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 5rem 0;
  opacity: 0;
}

.certifications h3 {
font-size: 5rem;
    margin: 0rem 0rem 0rem 0rem;
    text-align: left;
    font-weight: 100;
    letter-spacing: -4px;
}

.certifications{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 31px;
    margin-top: -80px;
    background: rgba(0, 0, 117, 0.3);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #54ff8d;
}

.cert-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cert {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #e9ffee;
  transition: all .3s ease;
  min-width: 120px;
  text-align: center;
}

.cert:hover {
  background: rgba(118,255,159,0.12);
  border-color: #54ff8d;
}

.cert.glow {
  background: #00003b;
  border-color: #54ff8d;
  box-shadow: 0 0 20px rgba(118,255,159,0.6);
  color: #54ff8d;
}

    /* Service Section */

.service-section {
  position: relative;
  background: #00003b;
  padding: 6rem 2rem;
  color: #e9ffee;
  overflow: hidden;
  border-bottom: 2px inset #54ff8d;
}

.service-section::after {
  content: "";
  position: absolute;
  inset: 0; /* cover entire section */
  background: url("images/carbone-fiber-background-2024-11-26-18-17-54-utc.webp") center/cover no-repeat;
  opacity: 0.1; /* adjust brightness */
  z-index: 0;
}

.service-wrapper {
  position: relative;
  z-index: 2; /* keep content above background image */ 
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2rem;
  color: #54ff8d;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.service-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.service-text {
  font-size: 1.05rem;
  color: #a6c6b1;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 50ch;
}

.scroll-link {
  font-size: 0.9rem;
  color: #54ff8d;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.scroll-link::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 6px;
  border-radius: 50%;
  background: #54ff8d;
  box-shadow: 0 0 8px #54ff8d;
}


.service-visual img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 25px rgba(12, 68, 29, 0.5));
}

.case-study-section {
  position: relative;
  padding: 5rem 2rem;
  background: #00003b;
}

.case-study-section::after {
  content: "";
  position: absolute;
  inset: 0; /* cover entire section */
  background: url("images/magic-waves-banner-design-technology-neon-blue-an-2025-01-07-12-19-22-utc2.webp") top repeat;
  opacity: 0.05; /* adjust brightness */
  z-index: 0;
}


.feature-card {
  display: flex;
  width: 80%;
  min-height: 500px;
  background: #04150d;
  padding: 40px;
  border-radius: 20px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(118,255,159,0.15);
  border: 1px solid rgba(118,255,159,0.2);
  color: #e9ffee;
  margin-bottom: 50px;
}

.feature-image {
  width: 45%;
  display: flex;
  justify-content: center;
}

.feature-image img {
  width: 500px;
  border-radius: 15px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 25px rgba(118,255,159,0.5));
}

.feature-text {
  text-align: left;
}

.feature-text h3 {
  font-size: 1.9rem;
  color: white;
  margin: 0px;
}

.feature-text p {
  font-size: 1rem;
  color: white;
  line-height: 1.6;
  margin: 5px 0px 0px;
}

.view-case-study {
  display: inline-block;
  margin-top: 10px;
  color: #54ff8d;
  font-weight: 600;
  text-decoration: none;
}
.view-case-study:hover {
  text-decoration: underline;
}

.feature-badge p {
  font-size: 0.9rem;
  color: #54ff8d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.testimonial {
      display: flex;
    align-items: center;
    margin-top: 20px;
    background: rgb(0 0 59);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(84, 255, 141, 0.5);
}

.testimonial img {
  width: 120px;
  height: auto;
  margin-right: 15px;
}

.stars {
  color: #ffd700;
  font-size: 1rem;
  margin-left: 5px;
}

.case-study-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Top row: 2 cards, each 3 columns wide */
.card1 {
  grid-column: 1 / span 3;
  grid-row: 1;
}

.card2 {
  grid-column: 4 / span 3;
  grid-row: 1;
}

/* Bottom row: 3 cards, each 2 columns wide */
.card3 {
  grid-column: 1 / span 2;
  grid-row: 2;
}

.card4 {
  grid-column: 3 / span 2;
  grid-row: 2;
}

.card5 {
  grid-column: 5 / span 2;
  grid-row: 2;
}

.case-card {
  background: linear-gradient(0deg, #54FF8D 0%, #00003b 32%);
    border: 1px solid #54ff8d;
    border-radius: 20px;
    padding: 30px;
    color: #e9ffee;
    box-shadow: 0 0 20px rgba(118, 255, 159, 0.1);
    text-align: center;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 50px;
}

/* Contact Section */

.contact-section {
  position: relative;
  background: #00003b;
  color: #fff;
  padding: 5rem 2rem;
  border-top: 2px inset var(--accent-2);
  border-bottom: 2px inset var(--accent-2);
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0; /* cover entire section */
  background: url("images/carbone-fiber-background-2024-11-26-18-17-54-utc.webp") center/cover no-repeat;
  opacity: 0.1; /* adjust brightness */
  z-index: 0;
}

.contact-container {
  position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  font-size: 1.5rem;
  color: #54ff8d;
  margin-bottom: 20px;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 1rem;
  color: #b5c8bd;
  margin-bottom: 30px;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(118,255,159,0.15);
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(118,255,159,0.08);
  border-color: rgba(118,255,159,0.4);
}

.info-card i {
  font-size: 1.4rem;
  color: #54ff8d;
  margin-right: 15px;
}

.info-card p {
  margin: 0;
  font-weight: 600;
  color: #fff;
}

.info-card span {
  display: block;
  font-size: 0.9rem;
  color: #a6c6b1;
}

.arrow i {
  color: #fff;
  font-size: 1rem;
}

/* Form Container */
#enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

#enquiry-form input::placeholder,
#enquiry-form textarea::placeholder,
#enquiry-form select::placeholder {
  color: white;        /* <- change this to your brand color */
  opacity: 0.8;         /* ensure it's not faded */
}


/* Inputs & Textarea */
#enquiry-form input,
#enquiry-form textarea,
#enquiry-form select {
  font-family: 'Sora', sans-serif;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--accent-2);
  border-radius: 8px;
  background: transparent;
  font-size: 1rem;
  color: rgb(240, 240, 240);
  transition: all 0.3s ease;
  outline: none;
  
}

#enquiry-form input:focus,
#enquiry-form textarea:focus,
#enquiry-form select:focus {
  font-family: 'Sora', sans-serif;
  border-color: white /* Accent color */

}

/* Inline fields (phone + company) */
.inline-fields {
  font-family: 'Sora', sans-serif;
  display: flex;
  gap: 15px;
  color: white;
}

.inline-fields input {
  font-family: 'Sora', sans-serif;
  flex: 1;
}

/* Dropdown styling */
.styled-select {
  font-family: 'Sora', sans-serif;
  appearance: none;
  background: #fff url("data:image/svg+xml;utf8,<svg fill='%23666' height='24' width='24' viewBox='0 0 24 24'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 12px center;
  background-size: 18px;
  cursor: pointer;
}

/* Textarea */
#enquiry-form textarea {
  font-family: 'Sora', sans-serif;
  resize: vertical;
  min-height: 120px;
}

/* Gradient Submit Button */
.submit-btn {
  font-family: 'Sora', sans-serif;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, #0a5a35, #20f49b);
  transition: opacity 0.3s ease;
}

.submit-btn:hover {
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 600px) {
  .inline-fields {
    flex-direction: column;
  }
}

.site-footer {
  background: #00003b;  /* Dark background */
  color: white;
  padding: 60px 10% 20px;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.footer-column{
  text-align: center;
}

.footer-column h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #dcdcdc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #54ff8d; /* Accent hover color */
}

.footer-column p {
  margin: 0 0 10px;
  line-height: 1.5;
}

.footer-cert {
  margin-top: 15px;
  max-width: 120px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #aaa;
}


@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-cert {
    margin: 20px auto 0;
  }
}










    

    /* Tweak hero sizing on medium/laptop screens */
    @media (max-width:1400px){
      :root{ --h1-vw:6vw; --h1-max:5.2rem; }
      .content{ gap:2.4vw; margin-top: 160px; margin-bottom: 60px; max-width: 1000px;}
      .nav{ min-width: 700px; }
      canvas.particles{ display: none; }
      .hero-logo{display: block;}
      .features {
    margin-top: 4rem;
    max-width: 1000px;
    margin: 0 auto 100px;
}

.about-section .title {
    margin-top: 45px;
    margin-bottom: 40px ;
}

.subtitle {
    margin-bottom: 3rem !important;
}

.divider {
    margin: 2rem 0;
}

.certifications {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.hero {
    background: #00003b;
}
.cyber-essentials-pic{
    width: 160px !important;
}

.about-section {
      padding: 1rem 2rem 5rem;
}

.service-wrapper{
    max-width: 1000px;
    margin: 0 auto;
}

.service-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
}

.feature-image img {
    width: 400px;
}

.feature1{
      width: 294px !important;
}

.feature2{
  width: 260px !important;
}
.feature3{
  width: 240px !important;
}
.feature4{
  width: 240px !important;
}

.case-study-grid{
    max-width: 1000px;
}

.feature-text h3 {
    font-size: 1.3rem;
}

.feature-text p {
    font-size: 0.8rem;
}

.view-case-study {
    font-size: 0.8rem;
}

.testimonial-text{
  font-size: 0.6rem !important;
}

.testimonial img {
    width: 32px;
}

.contact-container {
    max-width: 1000px;
}

.footer-container {
    font-size: 11px;
}

.footer-img{
  width: 160px !important;
}

.footer-cert {
    max-width: 100px;
}

h1{
  font-size: 4rem;
}

.hero-container{
  max-width: 1000px !important;
}

.hero-text h1{
      font-size: 5rem !important;
}

.stats-container{
    max-width: 1000px !important;
        
}

.stats-left{
  gap: 60px !important;
}

.aiir-hero{
  padding: 135px 20px 100px !important;
}

.service-image{
  max-width: 400px !important;
}

.certifications h3 {
    font-size: 4rem;
}

    }
    @media (max-width:1200px){
      :root{ --h1-vw:5.2vw; --h1-max:4.4rem; }
      .content{ grid-template-columns: 1fr; gap:22px; padding:16vh 4vw 12vh; }
      .hero{ align-items:flex-start; }
      /* keep particle logo smaller on narrow screens */
      canvas.particles{ height:52vh; }
    }
    @media (max-width:1000px){
      :root{ --h1-vw:4.2vw; --h1-max:3.4rem; --h1-min:2rem; }
      .lede{ font-size:0.98rem }
      .nav{ padding:.5rem .6rem 0.2rem }
    }

    /* icon spacing inside collapsed service links */
    /* service image icon styling (replace the src with your icon files) */
    .nav-collapse a .service-icon{ margin-right:0.6rem; width:20px; height:20px; display:inline-block; vertical-align:middle; }
    .nav-collapse a img.service-icon{ object-fit:contain }















   .trulend-hero {
    position: relative;
  background: var(--bg-1);
  color: #d9ffe0;
  padding: 170px 20px 100px;
}

.trulend-hero::after {
  content: "";
  position: absolute;
  inset: 0; /* cover entire section */
  background: url("images/abstract-design-of-green-silk-waves-creating-a-me-2025-02-06-02-52-54-utc.webp") center/cover no-repeat;
  opacity: 0.05; /* adjust brightness */
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
}

.hero-text .badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #54ff8d;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #54ff8d;
}

.hero-text h1 {
  font-size: 10rem;
  font-weight: 900;
  color: #54ff8d;
  margin: 10px 0 0px;
}

.hero-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}

.hero-text h2 span {
  color: #54ff8d;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  padding: 12px 22px;
  border: 1px solid #54ff8d;
  border-radius: 30px;
  color: #54ff8d;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #54ff8d;
  color: #04150d;
}

.hero-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.hero-image img {
  max-width: 100%;
  border-radius: 8px;
  filter: drop-shadow(0px 0px 25px rgba(84, 255, 141, 0.9));
}

.scroll-link-handy {
  font-size: 1.5rem;
  color: #9465ff;
  text-align: right;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.scroll-link-handy::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 6px;
  border-radius: 50%;
  background: #9465ff;
  box-shadow: 0 0 8px #9465ff;
}

.hero-labels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  font-size: 1.5rem !important;
}

.stats-strip {
     background: #04150d;
    color: #fff;
    padding: 20px 0px;
    font-family: 'Sora', sans-serif;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: transparent;
  border-radius: 12px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.stats-left {
      border-left: 2px solid var(--accent-2);
    border-right: 2px solid var(--accent-2);
    gap: 30px;
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 0px 30px;
    width: 47%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 31px 0;
    gap: 110px;
}

.stat h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.stat p {
  font-size: 0.9rem;
  color: #bbb;
  margin: 0;
}

.join-btn {
  background: linear-gradient(to right, #a855f7, #7c3aed);
  color: #fff;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.join-btn:hover {
  opacity: 0.85;
}

.stats-right {
      border-left: 2px solid var(--accent-2);
    border-right: 2px solid var(--accent-2);
    gap: 30px;
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 0px 30px;
    width: 47%;
    display: flex;
    justify-content: center;
    align-items: center;
        padding: 28px 0px;
}

.stats-right p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ccc;
}

.stats-right ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.stats-right ul li {
  font-weight: 600;
  color: #a78bfa; /* soft purple */
}

/* Lending Section */

.lending-section {
  background: #04150d;
  text-align: center;
  padding: 80px 10%;
  color: #e9ffee;
  overflow: visible;
}

.dashboard-mockup {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  overflow: visible;
}

.dashboard-mockup img {
  max-width: 1000px;
  filter: drop-shadow(0 0 80px rgba(189, 255, 206, 0.4));
  border-radius: 10px;
}



.section-title {
    font-size: 3rem;
    font-weight: 700;
    padding: 25px;
    border-radius: 12px;
    color: #fff;
    max-width: 573px;
    margin: 30px auto 60px;
}

.section-title span {
  color: var(--accent-2); /* accent green */
}

.lending-grid {
  display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.lending-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--accent-2);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  line-height: 1.6;
  color: #cfead7;
  transition: transform 0.3s ease, border 0.3s ease;
}

.lending-box:hover {
  transform: translateY(-5px);
  border-color: var(--accent-2);
}

.lending-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--accent-2); /* accent green */
}

/* Collector Section */

.collector-section {
  position: relative;
  background: #04150d;
  color: #e9ffee;
  padding: 80px 10%;
  border-top: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
}

.collector-section::after {
  content: "";
  position: absolute;
  inset: 0; /* cover entire section */
  background: url("images/green-abstract-paper-fold-2024-10-14-15-10-33-utc.webp") center/cover no-repeat;
  opacity: 0.05; /* adjust brightness */
  z-index: 0;
}

.collector-container {
  position: relative;
    z-index: 1;
      display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.portal-container {
  position: relative;
    z-index: 1;
      display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.collector-left {
  flex: 1;
  min-width: 300px;
}

.collector-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(194, 255, 210, 0.4);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
}

.collector-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #54ff8d;
}

.collector-box h3 span {
  color: #fff; /* makes "From" and "To" subtle while main words glow */
}

.collector-box p {
  color: #cfead7;
  line-height: 1.6;
}

.collector-features {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(194, 255, 210, 0.4);
  border-radius: 12px;
  padding: 20px;
}

.collector-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #54ff8d;
  font-weight: 600;
  line-height: 1.8;
}

.collector-right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.collector-title {
  font-size: 3rem;
    font-weight: 700;
    margin-top: -5px;
    margin-bottom: 60px;
    color: #fff;
}

.collector-title span {
  color: #54ff8d;
}

.phone-mockups {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.phone-mockups img {
  max-width: 650px;
  filter: drop-shadow(0 0 70px rgba(194, 255, 210, 1));
}

.phone-mockups-portal {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.phone-mockups-portal img {
  max-width: 650px;
  filter: drop-shadow(0 0 70px rgba(194, 255, 210, 1));
}

/* Responsive */
@media (max-width: 1000px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 3rem;
  }
  .hero-text h2 {
    font-size: 1.5rem;
  }
}













.dashboard-mockup-hc {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  overflow: visible;
}

.dashboard-mockup-hc img {
  max-width: 1000px;
  filter: drop-shadow(0 0 80px rgba(189, 255, 206, 0.4));
  border-radius: 10px;
}
.phone-mockups-hc {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.phone-mockups-hc img {
  max-width: 650px;
  filter: drop-shadow(0 0 70px rgba(194, 255, 210, 1));
}

   .handy-hero {
    position: relative;
  background: var(--bg-1);
  color: #d9ffe0;
  padding: 170px 20px 100px;
}

.handy-hero::after {
  content: "";
  position: absolute;
  inset: 0; /* cover entire section */
  background: url("images/abstract-liquid-purple-paint-2025-01-09-07-56-06-utc.webp") center/cover no-repeat;
  opacity: 0.05; /* adjust brightness */
  z-index: 0;
}

.collector-section-handy {
  position: relative;
  background: #04150d;
  color: #e9ffee;
  padding: 80px 10%;
  border-top: 2px solid #9465ff;
  border-bottom: 2px solid #9465ff;
}

.collector-section-handy::after {
  content: "";
  position: absolute;
  inset: 0; /* cover entire section */
  background: url("images/magic-waves-banner-design-technology-neon-blue-an-2025-01-07-12-19-22-utc.webp") center/cover no-repeat;
  opacity: 0.05; /* adjust brightness */
  z-index: 0;
}

.contact-section-handy {
  position: relative;
  background: #0a0113;
  color: #fff;
  padding: 5rem 2rem;
  border-top: 2px inset #9465ff;
  border-bottom: 2px inset #9465ff;
}

.contact-section-handy::after {
  content: "";
  position: absolute;
  inset: 0; /* cover entire section */
  background: url("images/carbone-fiber-background-2024-11-26-18-17-54-utc.webp") center/cover no-repeat;
  opacity: 0.1; /* adjust brightness */
  z-index: 0;
}

.info-card-handy {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #9465ff;
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.info-card-handy:hover {
  border-color: #dbccff;
}

.info-card-handy i {
  font-size: 1.4rem;
  color: #9465ff;
  margin-right: 15px;
}

.info-card-handy p {
  margin: 0;
  font-weight: 600;
  color: #fff;
}

.info-card-handy span {
  display: block;
  font-size: 0.9rem;
  color: #a6c6b1;
}













.dashboard-mockup-eb {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  overflow: visible;
}

.dashboard-mockup-eb img {
  max-width: 1000px;
  filter: drop-shadow(0 0 80px rgba(189, 255, 206, 0.4));
  border-radius: 10px;
}
.phone-mockups-eb {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.phone-mockups-eb img {
  max-width: 650px;
  filter: drop-shadow(0 0 70px rgba(194, 255, 210, 1));
}


.dashboard-mockup-cca {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  overflow: visible;
}

.dashboard-mockup-cca img {
  max-width: 1000px;
  filter: drop-shadow(0 0 80px rgba(189, 255, 206, 0.4));
  border-radius: 10px;
}
.phone-mockups-cca {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.phone-mockups-cca img {
  max-width: 650px;
  filter: drop-shadow(0 0 70px rgba(194, 255, 210, 1));
}
   .cca-hero {
    position: relative;
  background: var(--bg-1);
  color: #d9ffe0;
  padding: 170px 20px 100px;
}

.cca-hero::after {
  content: "";
  position: absolute;
  inset: 0; /* cover entire section */
  background: url("images/blue-texture-background-with-lines-close-up-2025-06-06-00-40-16-utc.webp") center/cover no-repeat;
  opacity: 0.05; /* adjust brightness */
  z-index: 0;
}

.collector-section-cca {
  position: relative;
  background: #04150d;
  color: #e9ffee;
  padding: 80px 10%;
  border-top: 2px solid #3b82f6;
  border-bottom: 2px solid #3b82f6;
}

.collector-section-cca::after {
  content: "";
  position: absolute;
  inset: 0; /* cover entire section */
  background: url("images/magic-waves-banner-design-technology-neon-blue-an-2025-01-07-12-19-22-utc.webp") center/cover no-repeat;
  opacity: 0.05; /* adjust brightness */
  z-index: 0;
}

.contact-section-cca {
  position: relative;
  background: #010b14;
  color: #fff;
  padding: 5rem 2rem;
  border-top: 2px inset #3b82f6;
  border-bottom: 2px inset #3b82f6;
}

.contact-section-cca::after {
  content: "";
  position: absolute;
  inset: 0; /* cover entire section */
  background: url("images/carbone-fiber-background-2024-11-26-18-17-54-utc.webp") center/cover no-repeat;
  opacity: 0.1; /* adjust brightness */
  z-index: 0;
}

.info-card-cca {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #3b82f6;
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.info-card-cca:hover {
  border-color: #bfdbfe;
}

.info-card-cca i {
  font-size: 1.4rem;
  color: #3b82f6;
  margin-right: 15px;
}

.info-card-cca p {
  margin: 0;
  font-weight: 600;
  color: #fff;
}

.info-card-cca span {
  display: block;
  font-size: 0.9rem;
  color: #a6c6b1;
}

.scroll-link-cca {
  font-size: 1.5rem;
  color: #3b82f6;
  text-align: right;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.scroll-link-cca::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 6px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 8px #3b82f6;
}











.dashboard-mockup-aiir {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  overflow: visible;
}

.dashboard-mockup-aiir img {
  max-width: 1000px;
  filter: drop-shadow(0 0 80px rgba(189, 255, 206, 0.4));
  border-radius: 10px;
}
.phone-mockups-aiir {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.phone-mockups-aiir img {
  max-width: 650px;
  filter: drop-shadow(0 0 70px rgba(194, 255, 210, 1));
}
   .aiir-hero {
    position: relative;
  background: var(--bg-1);
  color: #d9ffe0;
  padding: 170px 20px 100px;
}

.aiir-hero::after {
  content: "";
  position: absolute;
  inset: 0; /* cover entire section */
  background: url("images/center-of-decoration-lamp-in-shape-of-plasma-ball-2025-01-29-07-38-35-utc.webp") center/cover no-repeat;
  opacity: 0.05; /* adjust brightness */
  z-index: 0;
}

.collector-section-aiir {
  position: relative;
  background: #0a0714;
  color: #e9ffee;
  padding: 80px 10%;
  border-top: 2px solid #7469BF;
  border-bottom: 2px solid #7469BF;
}

.collector-section-aiir::after {
  content: "";
  position: absolute;
  inset: 0; /* cover entire section */
  background: url("images/magic-waves-banner-design-technology-neon-blue-an-2025-01-07-12-19-22-utc.webp") center/cover no-repeat;
  opacity: 0.05; /* adjust brightness */
  z-index: 0;
}

.contact-section-aiir {
  position: relative;
  background: #0a0714;
  color: #fff;
  padding: 5rem 2rem;
  border-top: 2px inset #7469BF;
  border-bottom: 2px inset #7469BF;
}

.contact-section-aiir::after {
  content: "";
  position: absolute;
  inset: 0; /* cover entire section */
  background: url("images/carbone-fiber-background-2024-11-26-18-17-54-utc.webp") center/cover no-repeat;
  opacity: 0.1; /* adjust brightness */
  z-index: 0;
}

.info-card-aiir {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #7469BF;
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.info-card-aiir:hover {
  border-color: #bfdbfe;
}

.info-card-aiir i {
  font-size: 1.4rem;
  color: #7469BF;
  margin-right: 15px;
}

.info-card-aiir p {
  margin: 0;
  font-weight: 600;
  color: #fff;
}

.info-card-aiir span {
  display: block;
  font-size: 0.9rem;
  color: #a6c6b1;
}

.scroll-link-aiir {
  font-size: 1.5rem;
  color: #7469BF;
  text-align: right;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.scroll-link-aiir::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 6px;
  border-radius: 50%;
  background: #7469BF;
  box-shadow: 0 0 8px #7469BF;
}











   .about-hero {
    position: relative;
  background: #00003b;
  color: #d9ffe0;
  padding: 170px 20px 100px;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0; /* cover entire section */
  background: url("images/abstract-design-of-green-silk-waves-creating-a-me-2025-02-06-02-52-54-utc.webp") center/cover no-repeat;
  opacity: 0.1; /* adjust brightness */
  z-index: 0;
}

.culture-section {
  position: relative;
  background: #54ff8d; /* soft green background */
  padding: 100px 10%;
  text-align: center;
  color: var(--bg-1);
}

.culture-bg {
  position: absolute;
  inset: 0;
  background: #54ff8d;
  z-index: 0;
}

.culture-section .container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 1;
}

.subheading {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg-1);
  opacity: 0.9;
}

.culture-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--bg-1);
  max-width: 900px;
  margin: 20px auto 60px auto;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.stat h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--bg-1);
}

.stat p {
  font-size: 1rem;
  font-weight: 600;
  color: white
}


.vision-section {
  background: #00003b; /* light grey background */
  padding: 100px 10%;
  text-align: center;
}

.vision-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--accent-2); /* dark grey for contrast */
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.vision-item {
  text-align: center;
  padding: 20px;
}

.vision-item img {
  width: 80px;
  height: auto;
  margin-bottom: 25px;
}

.vision-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--accent-2);
}

.vision-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--accent-2);
  max-width: 350px;
  margin: 0 auto;
}

/* Show hamburger only on mobile */
.hamburger {
    font-size: 28px;
    cursor: pointer;
    display: none;
    position: absolute;
    right: 20px;
    top: 18px;
    z-index: 1100;
}

/* MOBILE MENU STYLES */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(322deg, var(--bg-1) -80%, var(--accent-2) 59%);
    color: white;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 120px;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    z-index: 1200;
}

/* Show the menu */
.mobile-menu.active {
    transform: translateX(0);
}

/* Mobile Menu Container */
.mobile-menu-container {
    width: 80%;
    max-width: 400px;
    text-align: center;
}

/* Logo and Close Button */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 20px;
    left: 20px;
    width: 90%;
}

.mobile-logo {
    width: 150px;
}

.close-btn {
    font-size: 28px;
    cursor: pointer;
    color: black;
    margin-right: 10px;
}

/* Mobile Navigation */
.mobile-nav {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 60px;
}

.mobile-nav li {
    font-size: 1.2rem;
    color: black;
    font-weight: 700;
    border-bottom: 1px solid black;
    margin: 20px 0;
    text-transform: capitalize;
    padding: 0px 0px 10px 0px;
}

.mobile-nav a {
    text-decoration: none;
    font-weight: 700;
    color: black;
}

/* Mobile Dropdown */
.mobile-dropdown {
    cursor: pointer;
}

.mobile-dropdown span {
    display: block;
    position: relative;
}

.mobile-dropdown-menu {
    display: none;
    margin-top: 10px;
    font-size: 15px;
    line-height: 2;
}

.mobile-dropdown-menu li {
    font-size: 1rem;
    margin: 8px 0;
    opacity: 1;
    border: none;
}

.mobile-dropdown-menu a{
    color: black;
}

.mobile-dropdown-menu a:hover{
    color: var(--accent-2);
    background-color: var(--bg-1);
    border-radius: 5px;
    padding: 5px 10px;
}

/* Social Icons */
.mobile-social {
    position: absolute;
    bottom: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

.mobile-social a {
    color: white;
    font-size: 24px;
    transition: opacity 0.3s;
}

.mobile-social a:hover {
    opacity: 0.7;
}


/* Responsive */
@media (max-width: 900px) {

  .hero-text h1 {
        font-size: 3rem !important;
    }

    .hero-title{
      font-size: 4rem !important;
    }

        .hero-text h2 {
        font-size: 1.2rem;
    }

    .hero-image img {
    max-width: 90%;
    
}
.stat h3 {
    font-size: 1.2rem;
} 

.stat p {
    font-size: 0.8rem;
}

.stats-left{
  width: 90% !important;
  gap: 31px !important;
}

.stats-right{
  width: 90% !important;
  gap: 31px !important;
}

.dashboard-mockup img {
    max-width: 100%;
}

    .section-title {

        font-size: 3rem !important;
    }

    .lending-box h3{
      font-size: 1.3rem !important;
    }
    .lending-box p{
      font-size: 1rem !important;
    }
    .lending-box ol{
      font-size: 1rem !important;
    }

.trusted-by {
  display: flex !important;
    flex-flow: column !important;
    gap: 14px !important;
    align-items: center !important;
}

.hamburger {
  display: block;
}

  .collector-container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .collector-left, .collector-right {
    width: 100%;
  }
  .phone-mockups {
    flex-direction: column;
    gap: 30px;
  }

  .phone-mockups img {
    max-width: 650px !important;
    filter: drop-shadow(0 0 10px rgba(194, 255, 210, 1));
}

.phone-mockups-cca {
    flex-direction: column;
    gap: 30px;
  }

  .phone-mockups-cca img {
    max-width: 650px !important;
    filter: drop-shadow(0px 0px 15px rgba(59,130,246,1)) !important ;
}

.phone-mockups-aiir {
    flex-direction: column;
    gap: 30px;
  }

  .phone-mockups-aiir img {
    max-width: 650px !important;
    filter: drop-shadow(0px 0px 10px rgba(148, 101, 255, 1)) !important ;
}

.phone-mockups-hc {
    flex-direction: column;
    gap: 30px;
  }

  .phone-mockups-hc img {
    max-width: 650px !important;
    filter: drop-shadow(0px 0px 10px rgba(116,105,191, 1)) !important ;
}

.phone-mockups-eb {
    flex-direction: column;
    gap: 30px;
  }

  .phone-mockups-eb img {
    max-width: 650px !important;
    filter: drop-shadow(0px 0px 10px rgba(59,130,246,1)) !important ;
}




.dashboard-mockup-cca img{
  width: 100% !important;
  filter: drop-shadow(0px 0px 15px rgba(59,130,246,1)) !important ;
}

.dashboard-mockup-aiir img{
  width: 100% !important;
  filter: drop-shadow(0px 0px 10px rgba(148, 101, 255, 1)) !important ;
}

.dashboard-mockup-hc img{
  width: 100% !important;
  filter: drop-shadow(0px 0px 10px rgba(116,105,191, 1)) !important ;
}

.dashboard-mockup-eb img{
  width: 100% !important;
  filter: drop-shadow(0px 0px 10px rgba(59,130,246,1)) !important ;
}

.cca-image{
  filter: drop-shadow(0px 0px 15px rgba(59,130,246,1)) !important ;
}

.aiir-image{
  filter: drop-shadow(0px 0px 15px rgba(148, 101, 255, 1)) !important ;
}

.hc-hero-img{
  margin-top: 0 !important;
  filter: drop-shadow(0px 0px 15px rgba(116,105,191, 1)) !important ;
}

.eb-img{
  filter: drop-shadow(0px 0px 15px rgba(59,130,246,1)) !important ;
}





    .vision-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vision-title {
    font-size: 1.8rem;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
      
  .content{ grid-template-columns: 1fr; gap:18px; padding:18vh 4vw 12vh; width:94vw; }
      .lede{ max-width: 60ch; font-size:1rem }

      /* Make the floating nav full-width on small screens and keep visual parity */
        .nav {
        left: 0;
        transform: none;
        width: 94%;
        margin: 0 12px;
        border-radius: 12px;
        min-width: 0;
    }
      .nav .nav-links{ width:100%; display:flex; gap:.5rem; overflow-x:auto; -webkit-overflow-scrolling:touch; align-items:center; }
      .nav .nav-links a{ padding:.45rem .6rem; white-space:nowrap; display: none !important; }
      .nav .brand img{ width:96px; height:auto; }

      /* Collapse area stacks vertically */
      .nav-collapse .collapse-grid{ grid-template-columns: 1fr; gap: .6rem; }

      /* Actions/buttons stack on small screens */
      .actions{ flex-wrap:wrap; gap:.6rem; }
      .btn{ width:100%; min-width:0; justify-content:center }
      .btn.primary{ width:100%; }

      /* Give particles less vertical real-estate on small screens */
      canvas.particles{ height:60vh; }

       .service-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .service-visual img {
    margin-top: 2rem;
  }

   .feature-card {
    flex-direction: column;
    text-align: center;
    width: 95%;
    padding: 20px;
  }
  .feature-image, 
  .feature-text {
    width: 100%;
  }
  .testimonial {
    flex-direction: column;
    text-align: center;
  }
  .testimonial img {
    margin: 0 0 15px 0;
  }

   h1 {
        font-size: 3rem !important;
        line-height: 1;
    }

        .content {
        padding: 3vh 4vw 5vh !important;
        gap: 65px !important;
    }

    .index-wrapper{
      display: flex;
    flex-direction: column;
    gap: -5px;
    }

    .hero-logo{
      width: 270px !important;
    margin-left: 0px !important;
    margin-top: 0px !important;
    }

    .about-section .title {
    letter-spacing: -1px;
}

.weRhd{
  width: 40px !important;
    margin-left: 5px  !important;
    margin-right: 5px !important;
}

.certifications {
        display: flex !important;
        flex-direction: column !important;
        margin: auto !important ;
}

.certifications h3 {
    font-size: 3rem;
}

.portal{
  margin: -45px 0 0 0 !important;
    width: 289px;
}

.service-visual img {
    max-width: 295px !important;
    filter: drop-shadow(0 0 10px rgba(189, 255, 206, 0.5)) !important;
}

.contact-container {
    display: flex;
    flex-direction: column;
}

  .lending-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 2rem;
  }

  .stats-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .stats-left {
    justify-content: center;
  }
  .stats-right {
    justify-content: center;
  }

  .culture-section {
    padding: 60px 20px;
  }
  .culture-text {
    font-size: 1rem;
  }
  .stats {
    gap: 30px;
  }
  .stat h2 {
    font-size: 2rem;
  }

  .logo{
    width: 170px !important;
    margin-top: 10px !important;
  }

  .case-study-grid {
    display: flex;
    flex-direction: column;
}

.case-card{
  gap: 0px;
  flex-direction: column !important;
}

    .feature-image img {
        width: 264px !important;
        filter: drop-shadow(0 0 10px rgba(189, 255, 206, 0.5)) !important;
    }

    .footer-container {
    display: flex;
    flex-direction: column;
}

.hc-hero-img{
  margin-top: 0 !important;
}

.aiir-hero-img{
  margin-top: 0 !important;
}

.dashboard-mockup img {
    filter: drop-shadow(0 0 10px rgba(189, 255, 206, 0.4))  !important;

}

.hero-image img {
    filter: drop-shadow(0px 0px 10px rgba(189, 255, 206, 0.9));
}



.phone-mockups-portal img {
    filter: drop-shadow(0 0 10px rgba(194, 255, 210, 1)) !important ;
}

.mobile-logo-show {
    display: block !important;
}

}

 .form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    display: none; /* hidden by default */
  }
  .form-message.success {
    background: #e6f9ee;
    color: #1a7f37;
    border: 1px solid #b2e2c4;
  }
  .form-message.error {
    background: #fdecea;
    color: #b71c1c;
    border: 1px solid #f5c2c0;
  }

/* Privacy Policy Section */
.privacy-policy-section {
  background: #00003b; /* dark background */
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.privacy-policy-container {
  max-width: 900px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02); /* subtle glass effect */
  border: 1px solid rgba(118, 255, 159, 0.2);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 0 25px rgba(118, 255, 159, 0.15);
  color: white;
  font-family: 'Sora', sans-serif;
  line-height: 1.7;
}

/* Main Title */
.privacy-policy-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #54FF8D;
  text-decoration: underline;
}

/* Subtitles */
.privacy-policy-container h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #54FF8D ;
}

.privacy-policy-container h3 {
  font-size: 1.25rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: white;
}

.privacy-policy-container h4 {
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 8px;
  color: white;
}

/* Paragraphs */
.privacy-policy-container p {
  margin-bottom: 16px;
  color: white;
  font-size: 1rem;
}

/* Lists */
.privacy-policy-container ul {
  margin: 15px 0 20px 20px;
  padding-left: 20px;
}

.privacy-policy-container ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Links */
.privacy-policy-container a {
  color: white;
  font-weight: 600;
  text-decoration: underline;
}

.privacy-policy-container a:hover {
  text-decoration: none;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-policy-container {
    padding: 25px;
  }
  .privacy-policy-container h1 {
    font-size: 1.6rem;
  }
  .privacy-policy-container h2 {
    font-size: 1.3rem;
  }
}


/* Cookie Banner Styling */
#cookie-banner {
    display: none;
    visibility: hidden; /* ✅ Prevents flashing before JavaScript loads */
    opacity: 0; /* ✅ Makes it invisible */
    transition: opacity 0.3s ease-in-out; /* ✅ Smooth fade-in effect */
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    background: #54FF8D;
    color: black;
    padding: 20px;
    font-family: 'Satoshi', sans-serif;
    text-align: center;
    border-radius: 50px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: opacity 0.3s ease-in-out;
}

.cookie-banner-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.cookie-banner-content p {
    font-size: 0.9rem;
    font-family: 'sora', sans-serif;
    font-weight: bold;
    color: #00003b;
}

.cookie-banner-content h3 {
    margin: 0 0 10px;
}

.cookie-banner-content ul {
    text-align: center;
    padding-left: 20px;
}


.cookie-btn {
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    margin: 5px;
}

.cookie-accept {
    background: transparent;
    color: #00003b; 
    border: 2px solid #00003b;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background: #00003b;
    color: #54FF8D;
}

.cookie-decline {
    background: transparent;
    color: #00003b; 
    border: 2px solid #00003b;
    transition: all 0.3s ease;
}

.cookie-decline:hover {
    background: #00003b;
    color: #54FF8D;
}

.cookie-settings {
    background: transparent;
    color: #00003b; 
    border: 2px solid #00003b;
    transition: all 0.3s ease
}

.cookie-settings:hover {
    background: #00003b;
    color: #54FF8D;
}

/* Cookie Settings Modal */
#cookie-settings-modal {
    color: #00003b;
    display: none;
    position: fixed;
    bottom: -4px;
    right: -60px;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 372px;
    background: #54FF8D;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    border: 2px solid #00003b;
}

.cookie-settings-content h3 {
    margin: 0 0 10px;
}


.cookie-close {
    background: transparent;
    color: red;
    border: 2px solid red;
}

.cookie-save{
    background: transparent;
    color: #00003b;
    border: 2px solid #00003b;
    transition: all 0.3s ease;
}
.cookie-save:hover {
    background: #00003b;
    color: #54FF8D;
}

.cookie-close:hover {
    background: red;
    color: white;
}

@media (max-width: 768px) {
#cookie-banner {
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3sease-in-out;
    position: fixed;
    bottom: 24px;
    left: 49.5%;
    transform: translateX(-50%);
    width: 84%;
    padding: 20px;
    font-family: 'Satoshi', sans-serif;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: opacity 0.3sease-in-out;
}
}
