* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
/*      background-color: #384558;*/
      color: #ffffff;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    h1, h2, h3, h4, .navbar-brand, .btn {
      font-family: 'Space Grotesk', monospace;
      font-weight: 600;
    }

    /* Premium Dark Theme with futuristic accents */
    /*:root {
      --primary-glow: #00e0ff;
      --primary-blue: #0a7eff;
      --dark-bg: #010101;
      --card-bg: rgba(10, 15, 25, 0.75);
      --border-glow: rgba(0, 224, 255, 0.3);
    }*/

    /* Color Palette from PPT */
    :root {
      --primary-deep: #384558;
      --primary-light: #17a4fc;
      --primary-mid: #0776f9;
      --primary-dark: #0156eb;
      --primary-accent: #1262da;
      --pure-white: #ffffff;
      --glow-blue: rgba(23, 164, 252, 0.3);
    }

    /* custom navbar */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
/*  padding: 1rem 0;*/
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
  /*height: 55px;
  width: auto;*/
}

.nav-link {
  color: #111 !important;
  font-weight: 600;
  margin: 0 0.5rem;
  transition: 0.2s;
  position: relative;
  font-size:20px;
}

.nav-link:hover {
  color: #0156eb !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
/*  background: #0156eb;*/
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

    /* Hero video / image placeholder section using video background simulation */
    .hero-video-bg {
      position: relative;
      width: 100%;
      min-height: 100vh;
      background: radial-gradient(circle at 20% 30%, #07111f, #000000);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 100px;
    }

    .hero-video-bg::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?q=80&w=2070&auto=format') center/cover no-repeat;
      opacity: 0.25;
      z-index: 0;
      filter: brightness(0.7) contrast(1.2);
    }

    /* abstract glows */
    .glow-effect {
      position: absolute;
      width: 40vw;
      height: 40vw;
      background: radial-gradient(circle, rgba(0,224,255,0.2) 0%, rgba(0,0,0,0) 70%);
      border-radius: 50%;
      filter: blur(60px);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .btn-premium {
      background: linear-gradient(95deg, #0a7eff, #00e0ff);
      border: none;
      padding: 12px 32px;
      font-weight: 600;
      border-radius: 40px;
      color: #010101;
      transition: all 0.25s;
      box-shadow: 0 0 12px rgba(0,224,255,0.4);
    }

    .btn-premium:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 20px rgba(0,224,255,0.7);
      color: #000;
    }

    .btn-outline-light-premium {
      border: 1.5px solid #00e0ff;
      background: transparent;
      border-radius: 40px;
      padding: 12px 32px;
      color: #00e0ff;
      font-weight: 600;
      transition: 0.2s;
    }

    .btn-outline-light-premium:hover {
      background: #00e0ff20;
      border-color: #fff;
      color: #fff;
    }

    /* Section headings */
    .section-title {
      font-size: 3rem;
      font-weight: 700;
      background: linear-gradient(135deg, #ffffff, #00e0ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: -0.02em;
    }

    .card-tech {
      background: rgba(12, 18, 28, 0.75);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(0, 224, 255, 0.2);
      border-radius: 28px;
      transition: transform 0.3s, box-shadow 0.3s;
      height: 100%;
      overflow: hidden;
    }

    .card-tech:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 35px -12px rgba(0,224,255,0.2);
      border-color: rgba(0,224,255,0.6);
    }

    .icon-glow {
      font-size: 2.8rem;
      color: #00e0ff;
/*      text-shadow: 0 0 6px #00e0ff;*/
    }

    .video-wrapper {
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 20px 35px -12px black;
/*      border: 1px solid rgba(0,224,255,0.3);*/
    }

    /*footer {
      background: #010103;
      border-top: 1px solid rgba(0,224,255,0.2);
    }*/

    /* =========================
FOOTER
========================= */

/*footer{
  background:#2e3948;
  padding:30px 0;
}

footer p{
  margin:0;
  color:#cfd8ea;
}

.footer-social a{
  width:42px;
  height:42px;
  background:rgba(255,255,255,0.08);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:white;
  margin-left:10px;
  transition:0.3s;
  text-decoration: none;
}

.footer-social a:hover{
  background:var(--light-blue);
}*/

footer{
    background:#0b1117;
    color:#fff;
    padding:70px 0 25px;
    position:relative;
    overflow:hidden;
}

/* top border line */
.footer-border{
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:50px;
    padding-top:25px;
}

/* logo */
.footer-logo h3{
    font-size:30px;
    font-weight:700;
    letter-spacing:4px;
    color:#ffffff;
}

.footer-logo-img{
    width:165px;
    height:auto;
    object-fit:contain;
    border-radius:12px;
}

/* heading */
.footer-title{
    font-size:15px;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:22px;
    color:#8da2b5;
    letter-spacing:1px;
}

/* links */
.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#17a4fc;
    padding-left:5px;
}

/* contact */
.contact-info{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.contact-icon{
    width:52px;
    height:52px;
    border-radius:14px;
    background:#1b2733;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#17a4fc;
    font-size:20px;
    flex-shrink:0;
    transition:0.3s;
}

.contact-item:hover .contact-icon{
    background:#1262da;
    color:#ffffff;
}

.contact-item h6{
    margin-bottom:6px;
    font-weight:600;
    color:#ffffff;
}

.contact-item p{
    margin:0;
    color:#9fb0bf;
    line-height:1.8;
    font-size:15px;
}

/* social */
.footer-social{
    display:flex;
    gap:12px;
    justify-content:end;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.2);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.footer-social a:hover{
    background:#17a4fc;
    border-color:#17a4fc;
    transform:translateY(-3px);
}

/* copyright */
.copyright-text{
    color:#9fb0bf;
    font-size:14px;
    margin:0;
}

@media(max-width:991px){

    .footer-social{
        justify-content:start;
        margin-top:20px;
    }

    .footer-col{
        margin-bottom:40px;
    }

    .footer-logo{
        justify-content:start;
    }

    
}

.links .footer-title
{
  margin-left: 50px;
}
.links .footer-links
{
  margin-left: 50px;
}

    .contact-form .form-control {
      background: #0f121b;
      border: 1px solid #2a2f3f;
      color: white;
      border-radius: 20px;
      padding: 12px 20px;
    }

    .contact-form .form-control:focus {
      border-color: #00e0ff;
      box-shadow: 0 0 0 0.2rem rgba(0,224,255,0.25);
    }

    .btn-submit {
      background: linear-gradient(95deg, #0a7eff, #00e0ff);
      border-radius: 40px;
      padding: 12px 28px;
      font-weight: bold;
      width: 100%;
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 2.2rem;
      }
      .hero-video-bg {
        min-height: 90vh;
      }

      .mt-2 img
      {
        margin-top: 0px !important;
      }
    }


    /* Card Styles */
    .card-premium {
      background: rgba(56, 69, 88, 0.7);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(23, 164, 252, 0.4);
      border-radius: 32px;
      transition: transform 0.3s, box-shadow 0.3s;
      height: 100%;
      overflow: hidden;
    }
    .card-premium:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 35px -12px rgba(23,164,252,0.3);
      border-color: #17a4fc;
    }
    .icon-glow {
      font-size: 2.5rem;
      color: #17a4fc;
/*      text-shadow: 0 0 6px #17a4fc;*/
    }
    .stat-number {
      font-size: 2.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, #fff, #17a4fc);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .section-title {
      font-size: 2.8rem;
      font-weight: 700;
      background: linear-gradient(135deg, #ffffff, #17a4fc);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .badge-safety {
      background: #0156eb20;
      color: #17a4fc;
      border-radius: 40px;
      padding: 8px 20px;
      font-weight: 600;
    }
    .video-placeholder {
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid #17a4fc40;
      box-shadow: 0 15px 30px -12px black;
    }


.about-section{
  background:#384558;
}

.industry-tags,
.tech-stack-wrapper{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  justify-content:center;
}

.industry-tags span,
.tech-stack-wrapper span{
  padding:14px 24px;
  border-radius:50px;
  background:rgba(23,164,252,0.12);
  border:1px solid rgba(23,164,252,0.35);
  color:#ffffff;
  font-weight:600;
  transition:0.3s;
}

.industry-tags span:hover,
.tech-stack-wrapper span:hover{
  background:#17a4fc;
  transform:translateY(-4px);
}

.card-premium h4{
  color:#ffffff;
  margin-bottom:15px;
  font-weight:700;
}

.card-premium p{
  line-height:1.8;
}

.list-unstyled li{
  margin-bottom:10px;
}

/* =========================
PRODUCTS / SOLUTIONS
========================= */

.solutions-section{
  background:#384558;
  position:relative;
  overflow:hidden;
}

.solution-card{
  position:relative;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(23,164,252,0.15);
  border-radius:30px;
  padding:40px;
  overflow:hidden;
  height:100%;
  transition:0.4s;
  backdrop-filter:blur(10px);
}

.solution-card:hover{
  transform:translateY(-10px);
  border-color:#17a4fc;
  box-shadow:0 25px 45px rgba(23,164,252,0.18);
}

.solution-icon{
  width:85px;
  height:85px;
  border-radius:24px;
  background:linear-gradient(135deg,#17a4fc,#0156eb);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:30px;
}

.solution-icon i{
  color:#fff;
  font-size:34px;
}

.solution-card h4{
  font-weight:700;
  margin-bottom:18px;
}

.solution-card p{
  color:rgba(255,255,255,0.7);
  line-height:1.8;
}

.solution-glow{
  position:absolute;
  width:180px;
  height:180px;
  background:rgba(23,164,252,0.15);
  border-radius:50%;
  filter:blur(70px);
  top:-60px;
  right:-60px;
}

.solution-banner{
  background:linear-gradient(135deg,#0156eb,#1262da);
  padding:50px;
  border-radius:35px;
  margin-top:20px;
  overflow:hidden;
  position:relative;
}

.solution-banner h3{
  font-size:38px;
  font-weight:700;
  margin-bottom:20px;
}

.solution-banner p{
  color:rgba(255,255,255,0.85);
  font-size:17px;
  line-height:1.8;
}

/* =========================
IMPACT SECTION
========================= */

.impact-section{
  background:#2d384b;
}

.impact-card{
  background:rgba(255,255,255,0.05);
  border-radius:30px;
  padding:45px 30px;
  text-align:center;
  height:100%;
  border:1px solid rgba(23,164,252,0.12);
  transition:0.4s;
}

.impact-card:hover{
  transform:translateY(-8px);
  border-color:#17a4fc;
  box-shadow:0 20px 40px rgba(23,164,252,0.15);
}

.impact-number{
  font-size:58px;
  font-weight:800;
  background:linear-gradient(135deg,#ffffff,#17a4fc);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom:20px;
  line-height:1;
}

.impact-card h5{
  font-size:22px;
  font-weight:700;
  margin-bottom:18px;
}

.impact-card p{
  color:rgba(255,255,255,0.7);
  line-height:1.7;
}

/* =========================
FINAL CTA
========================= */

.final-cta-section{
  background:#384558;
  position:relative;
  overflow:hidden;
}

.final-cta-box{
  position:relative;
  background:linear-gradient(135deg,
    rgba(23,164,252,0.12),
    rgba(1,86,235,0.12));
  border:1px solid rgba(23,164,252,0.2);
  padding:90px 60px;
  border-radius:40px;
  overflow:hidden;
  backdrop-filter:blur(14px);
}

.cta-glow{
  position:absolute;
  width:350px;
  height:350px;
  background:rgba(23,164,252,0.18);
  border-radius:50%;
  filter:blur(120px);
  top:-120px;
  right:-120px;
}

.cta-title{
  font-size:64px;
  font-weight:800;
  line-height:1.2;
}

.cta-title span{
  color:#17a4fc;
}

.final-cta-box .btn-premium{
  padding:16px 40px;
  font-size:18px;
}

.final-cta-box .btn-outline-light-premium{
  padding:16px 40px;
  font-size:18px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

.solution-banner{
  text-align:center;
}

.cta-title{
  font-size:42px;
}

.final-cta-box{
  padding:60px 30px;
}

}

@media(max-width:576px){

.cta-title{
  font-size:32px;
}

.solution-banner h3{
  font-size:28px;
}

.impact-number{
  font-size:42px;
}

}

.tech-section{
    padding:90px 0;
    background:linear-gradient(135deg,#384558 0%,#1f2b3c 100%);
    overflow:hidden;
}

.section-title{
    color:#ffffff;
    font-size:42px;
    font-weight:700;
    text-align:center;
    margin-bottom:15px;
}

.section-subtitle{
    color:#c7d7ea;
    text-align:center;
    max-width:900px;
    margin:auto;
    margin-bottom:60px;
    line-height:1.8;
}

.custom-tabs{
    justify-content:center;
    border:none;
    gap:18px;
    margin-bottom:50px;
}

.custom-tabs .nav-link{
    border:none;
    background:#ffffff10;
    color:#ffffff !important;
    padding:16px 30px;
    border-radius:14px;
    font-weight:600;
    transition:0.4s;
    backdrop-filter:blur(8px);
}

.custom-tabs .nav-link i{
    margin-right:10px;
    color:#17a4fc;
}

.custom-tabs .nav-link.active{
    background:#0776f9;
    color:#ffffff;
    box-shadow:0 0 25px rgba(23,164,252,0.3);
}

.tab-card{
    background:#ffffff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.tab-image{
    height:100%;
    min-height:420px;
    object-fit:cover;
    width:100%;
}

.content-area{
    padding:45px;
}

.content-area h2{
    color:#384558;
    font-weight:700;
    margin-bottom:20px;
}

.content-area p{
    color:#5b6470;
    line-height:1.9;
    margin-bottom:25px;
}

.feature-box{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:20px;
}

.feature-icon{
    width:55px;
    height:55px;
    background:#1262da;
    color:#ffffff;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
    box-shadow:0 0 20px rgba(23,164,252,0.3);
}

.feature-box h5{
    font-weight:600;
    margin-bottom:6px;
    color:#0156eb;
}

.feature-box p{
    margin:0;
    font-size:15px;
    line-height:1.7;
}

@media(max-width:991px){

    .section-title{
        font-size:32px;
    }

    .custom-tabs{
        flex-direction:column;
    }

    .content-area{
        padding:30px;
    }
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 13px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}


/* =====================================================
   CRASH AVOIDANCE FEATURES - PREMIUM UI
===================================================== */

.crash-section {
    position: relative;
    background: linear-gradient(135deg, #384558 0%, #0156eb 100%);
    overflow: hidden;
    padding: 100px 0;
}

/* Background Glow */
.crash-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(23, 164, 252, 0.3) 0%,
            transparent 70%);
    top: -200px;
    left: -150px;
    z-index: 0;
}

.crash-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(23, 164, 252, 0.2) 0%,
            transparent 70%);
    bottom: -150px;
    right: -100px;
    z-index: 0;
}

.crash-section .container {
    position: relative;
    z-index: 2;
}

/* Section Text */
.crash-section .section-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 850px;
    margin: auto;
}

/* Premium Glass Card */
.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 45px 30px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    transition: all 0.45s ease;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.25),
        0 0 25px rgba(23, 164, 252, 0.08);
    height: 100%;
}

/* Border Glow */
.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(23, 164, 252, 0.8),
            rgba(1, 86, 235, 0.2));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s ease;
}

.glass-card:hover::before {
    opacity: 1;
}

/* Hover Effects */
.glass-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow:
        0 20px 60px rgba(1, 86, 235, 0.35),
        0 0 40px rgba(23, 164, 252, 0.2);
}

/* Feature Icon */
.feature-icon {
    width: 85px;
    height: 85px;
    border-radius: 22px;
    background: linear-gradient(135deg, #17a4fc, #0156eb);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow:
        0 10px 25px rgba(23, 164, 252, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.12);
    transition: all 0.4s ease;
}

.feature-icon i {
    color: #ffffff;
    font-size: 2rem;
}

.glass-card:hover .feature-icon {
    transform: scale(1.08) rotateY(180deg);
}

/* Heading */
.feature-card h4 {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

/* Text */
.feature-card p {
    color: rgba(255, 255, 255, 0.76);
    text-align: center;
    font-size: 0.98rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {

    .glass-card {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {

    .crash-section {
        padding: 70px 0;
    }

    .crash-section .section-text {
        font-size: 1rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon i {
        font-size: 1.6rem;
    }
}


/* =====================================================
   PREMIUM FEATURE BLOCKS
===================================================== */

.premium-feature-section {
    position: relative;
    overflow: hidden;
}

/* Row */
.premium-feature-row {
    margin-bottom: 120px;
}

/* Content Box */
.premium-feature-content {
    position: relative;
    padding: 55px;
    border-radius: 30px;
    background: linear-gradient(
        135deg,
        #384558 0%,
        #1f2d3d 100%
    ) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    transition: all 0.45s ease;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.25),
        0 0 25px rgba(23, 164, 252, 0.08);
}

/* Ensure heading visible */
.premium-feature-content .section-title {
    color: #ffffff !important;
}

/* Highlight span */
.premium-feature-content .section-title span {
    color: #17a4fc !important;
}
/* Animated Border */
.premium-feature-content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;

    background: linear-gradient(
        135deg,
        rgba(23, 164, 252, 0.9),
        rgba(1, 86, 235, 0.2)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0;
    transition: 0.4s ease;
}

.premium-feature-content:hover::before {
    opacity: 1;
}

.premium-feature-content:hover {
    transform: translateY(-10px);

    box-shadow:
        0 20px 60px rgba(1, 86, 235, 0.35),
        0 0 40px rgba(23, 164, 252, 0.2);
}

/* Feature Image */
.premium-feature-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 30px;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.35),
        0 0 35px rgba(23, 164, 252, 0.15);
}

.premium-feature-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 30px;
    transition: transform 0.8s ease;
}

.premium-feature-image-wrap:hover img {
    transform: scale(1.08);
}

/* Overlay */
.premium-feature-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(1, 86, 235, 0.4),
        rgba(56, 69, 88, 0.1)
    );

    border-radius: 30px;
}

/* Text */
.premium-feature-section .section-text {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Feature List */
.premium-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.premium-feature-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 16px;

    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    font-weight: 500;
}

/* Paragraph text */
.premium-feature-content .section-text {
    color: rgba(255,255,255,0.82) !important;
}

/* List text */
.premium-feature-list li {
    color: #ffffff !important;
}
.premium-feature-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;
    left: 0;
    top: 1px;

    color: #17a4fc;
    font-size: 1rem;
}

/* Premium Button */
.premium-glow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 34px;
    border-radius: 60px;

    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;

    color: #ffffff;

    background: linear-gradient(
        135deg,
        #17a4fc,
        #0156eb
    );

    box-shadow:
        0 10px 30px rgba(23, 164, 252, 0.35),
        inset 0 0 10px rgba(255,255,255,0.12);

    transition: all 0.4s ease;
}

.premium-glow-btn:hover {
    color: #ffffff;

    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(1, 86, 235, 0.45),
        0 0 25px rgba(23, 164, 252, 0.35);
}

/* Responsive */
@media (max-width: 991px) {

    .premium-feature-row {
        margin-bottom: 80px;
    }

    .premium-feature-content {
        padding: 40px 30px;
    }

    .premium-feature-image-wrap img {
        min-height: 380px;
    }
}

@media (max-width: 768px) {

    .premium-feature-row {
        margin-bottom: 60px;
    }

    .premium-feature-content {
        padding: 35px 25px;
    }

    .premium-feature-image-wrap img {
        min-height: 300px;
    }

    .premium-feature-section .section-text {
        font-size: 0.98rem;
    }

    .premium-glow-btn {
        width: 100%;
    }
}

/* =====================================================
   EMERGENT BEHAVIOR SECTION
===================================================== */

.emergent-behavior-section {
    position: relative;
    background: linear-gradient(
        135deg,
        #384558 0%,
        #1f2d3d 100%
    );
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Background Glow */
.emergent-behavior-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle,
        rgba(23, 164, 252, 0.18) 0%,
        transparent 70%
    );

    top: -250px;
    left: -200px;
}

.emergent-behavior-section::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(1, 86, 235, 0.15) 0%,
        transparent 70%
    );

    bottom: -250px;
    right: -200px;
}

/* Subtitle */
.emergent-subtitle {
    color: rgba(255,255,255,0.82);
    max-width: 850px;
    margin: auto;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Card */
.emergent-card {
    position: relative;
    padding: 45px;
    border-radius: 28px;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    overflow: hidden;

    transition: all 0.45s ease;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.25),
        0 0 30px rgba(23, 164, 252, 0.08);
}

/* Animated Border */
.emergent-card::before {
    content: "";
    position: absolute;
    inset: 0;

    border-radius: inherit;
    padding: 1px;

    background: linear-gradient(
        135deg,
        rgba(23, 164, 252, 0.9),
        rgba(1, 86, 235, 0.2)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0;
    transition: 0.4s ease;
}

.emergent-card:hover::before {
    opacity: 1;
}

.emergent-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 20px 60px rgba(1, 86, 235, 0.35),
        0 0 40px rgba(23, 164, 252, 0.2);
}

/* Badge */
.behavior-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 22px;

    border-radius: 50px;

    margin-bottom: 25px;

    background: rgba(23, 164, 252, 0.15);

    border: 1px solid rgba(23, 164, 252, 0.3);

    color: #17a4fc;

    font-weight: 700;
    font-size: 0.95rem;
}

.danger-badge {
    background: rgba(255, 80, 80, 0.12);
    border-color: rgba(255, 80, 80, 0.25);
    color: #ff6b6b;
}

/* Heading */
.emergent-heading {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Text */
.emergent-text {
    color: rgba(255,255,255,0.82);
    line-height: 1.9;
    font-size: 1.02rem;
    margin-bottom: 25px;
}

/* List */
.emergent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.emergent-list li {
    position: relative;

    padding-left: 35px;
    margin-bottom: 18px;

    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

.emergent-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;
    left: 0;
    top: 1px;

    color: #17a4fc;
}

/* Footer */
.emergent-footer {
    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,0.08);

    color: rgba(255,255,255,0.75);

    line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {

    .emergent-card {
        padding: 35px 28px;
    }

    .emergent-heading {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {

    .emergent-card {
        padding: 30px 24px;
    }

    .emergent-heading {
        font-size: 1.5rem;
    }

    .emergent-text,
    .emergent-subtitle {
        font-size: 0.98rem;
    }
}

.mt-2 img
{
  margin-top: 120px;
}
