*
{
    margin: 0;
    padding: 0;
}

html {
  scroll-behavior: smooth;
}



.nav-bar
{
    position: sticky;
    top:0;
    z-index: 10
}
.navbar {
  background: rgba(5, 8, 22, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
}
.glass-navbar {
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Brand */
.glass-navbar .navbar-brand {
  color: #F1F5F9 !important;
  font-weight: 800;
}

/* Links */
.glass-navbar .nav-link {
  color: #CBD5E1 !important;
  font-weight: 500;
  margin-left: 16px;
  transition: 0.3s ease;
}

.glass-navbar .nav-link:hover,
.glass-navbar .nav-link.active {
  color: #6366F1 !important;
}


/* Toggler icon for dark glass */
.glass-navbar .navbar-toggler {
  border: none;
}

.glass-navbar .navbar-toggler-icon {
  filter: invert(1);
}

.glass-navbar.scrolled {
  background: rgba(5, 8, 22, 0.85);
  backdrop-filter: blur(18px);
}

.navbar-brand
{
    color: #FFFFFF !important;
  font-weight: 800;
}
.navbar-nav .nav-link {
  color: #CBD5E1 !important;
}
.navbar-brand img {
  height: 30px;
  width: auto;
}
#banner {
  background: linear-gradient(
    135deg,
    #0F172A 0%,
    #1E293B 40%,
    #312E81 70%,
    #4F39F6 100%
  );
  color: #E0E7FF;
  
  padding-top: 110px;
  margin-bottom: 0 !important;
  padding-bottom: 80px;
}
.banner-title
{
    font-size: 40px;
    font-weight: 600;
}
.inline-logo {
  height: 30px;
  width: auto;
  vertical-align: middle; /* aligns nicely with text */
  margin-right: 6px; /* small space after logo */
}
.social-icon
{
    padding: 5%;

    
}
.btn-primary
{
    box-shadow: none;
    padding: 8px 25px;
    border: none;
    border-radius: 20px;
   

}

.social-icon i {
    color: #ffffff !important;   /* White icons */
    font-size: 28px;             /* Increase size (adjust as needed) */
    padding: 10px;
    transition: 0.3s ease;
}

.social-icon i:hover {
    color: #00d4ff !important;   /* Light blue on hover (optional) */
    transform: scale(2.2);       /* Slight zoom effect */
}

/* ===========================
   FEATURES SECTION BACKGROUND
   =========================== */
#features {
  position: relative;
  padding: 80px 0;
  margin-top: -40px; /* pulls features up into banner */
  background: linear-gradient(
    180deg,
    #312E81 0%,   /* matches the end of banner */
    #1E293B 60%,
    #0F172A 100%
  );
  color: #F1F5F9;
  overflow: hidden;
}
/* Section Title */
#features .title {
  color: #EDE9FE;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

/* ===========================
   MAIN FEATURES CARD (GLASS)
   =========================== */
#features .card {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.01)
  ) !important;

  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 20px !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

/* ===========================
   FEATURE ITEMS
   =========================== */
#features .feature-item {
  padding: 30px 15px;
  transition: all 0.35s ease;
  position: relative;
}

/* Soft vertical dividers */
#features .feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

/* ===========================
   ICON
   =========================== */
#features .feature-icon {
  font-size: 42px;
  color: #818CF8;
  margin-bottom: 14px;
  transition: all 0.35s ease;
}

/* ===========================
   TITLE
   =========================== */
#features .feature-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #F1F5F9;
  transition: all 0.35s ease;
}

/* ===========================
   TEXT
   =========================== */
#features .feature-text {
  font-size: 13px;
  color: #CBD5E1;
  line-height: 1.5;
}

/* ===========================
   HOVER EFFECT
   =========================== */
#features .feature-item:hover {
  transform: translateY(-8px);
}

#features .feature-item:hover .feature-icon {
  color: #4F39F6;
  transform: scale(1.25);
}

#features .feature-item:hover .feature-title {
  color: #C7D2FE;
}

/* ===========================
   MOBILE FIXES
   =========================== */
@media (max-width: 768px) {
  #features .feature-item::after {
    display: none;
  }

  #features .feature-item {
    margin-bottom: 20px;
  }
}

/* SECTION BACKGROUND */
#contact-sales {
  background: linear-gradient(
    180deg,
    #0B1023,
    #121A3A
  );
  padding: 80px 0;
  color: #F1F5F9;
}

/* GLASS CARD */
#contact-sales .contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
}

/* HEADINGS */
#contact-sales h2 {
  color: #F1F5F9;
  font-weight: 700;
}

#contact-sales p {
  color: #CBD5E1;
}

/* INPUTS — OVERRIDE BOOTSTRAP */
#contact-sales .form-control {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: #F1F5F9 !important;
  border-radius: 12px;
  padding: 12px 14px;
}

#contact-sales .form-control::placeholder {
  color: #94A3B8 !important;
}

#contact-sales .form-control:focus {
  background: rgba(255,255,255,0.12) !important;
  border-color: #4F39F6 !important;
  box-shadow: 0 0 0 0.15rem rgba(79,57,246,0.35) !important;
}

/* BUTTON */
#contact-sales .btn-primary {
  background: linear-gradient(135deg, #4F39F6, #6366F1) !important;
  border: none !important;
  border-radius: 30px;
  padding: 12px 40px;
  font-weight: 600;
  transition: all 0.3s ease;
}

#contact-sales .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(79,57,246,0.4);
}
/* ===========================
   ABOUT SECTION
   =========================== */
#about {
  background: linear-gradient(
    180deg,
    #121A3A 0%,
    #0B1023 100%
  );
  padding: 80px 0;
  color: #E2E8F0;
}

/* Section Title */
#about .section-title {
  color: #EDE9FE;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Glass Cards */
.about-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.about-card h4 {
  color: #C7D2FE;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-card p {
  color: #CBD5E1;
  font-size: 15px;
  line-height: 1.6;
}

/* Hover animation */
.about-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 15px 35px rgba(79, 57, 246, 0.4);
}

/* Responsive fixes */
@media (max-width: 768px) {
  #about {
    padding: 60px 0;
  }

  .about-card {
    margin-bottom: 20px;
  }
}
