/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #000000;
    --primary-dark: #0055DD;
    --secondary: #6633CC;
    --accent: #00CCFF;
    --dark: #000000;
    --darker: #ffffff;
    --light: #000000;
    --gray: #606060;
    --gray-dark: #000000;
    --success: #00D66C;
    --warning: #FFB800;
    --danger: #FF4757;
    --radius: 5px;
    --radius-lg: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --glow: 0 0 20px rgba(0, 102, 255, 0.4);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #6d6d6d;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Canvas Background */
#grid-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}

/* Container */
.container {
    width: 100%;

    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1px 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    background: rgb(255 255 255 / 80%);
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 17px;
    color: #000000;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    color: #000000;
}

.logo-icon img{
    width: 40px;
    height: 40px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #000000;
}



.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    position: relative;
}


.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
    padding: 10px 0;
}

.nav-link:hover {
    color: #000000;
}


.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border: 1px solid var(--gray-dark);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #000000;
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(0, 102, 255, 0.1);
    color: #000000;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #000000;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
nav .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.90rem;
}

nav .btn-primary {
    background: #000000;
    color: white;
    /* box-shadow: 0 0 10px rgba(0, 102, 255, 0.7), 0 0 20px rgba(102, 51, 204, 0.4); */
}

nav .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.8), 0 0 30px rgba(102, 51, 204, 0.5);
}

nav .btn-outline {
    background: transparent;
    color: #000000;

}

nav .btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #000000;
    color: #000000;
}

nav .btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #000000;
    border: 1px solid var(--gray-dark);
}

nav .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #000000;
    color: #000000;
}


/* Hero Section */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 28px;
    background: linear-gradient(to right, var(--light), var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 202% auto;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subhead {
    /* font-size: 1.15rem; */
    color: var(--gray);
    margin-bottom:70px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    
    
}


.hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.hero .btn-primary {
    background: #000000;
    color: white;
    /* box-shadow: 0 0 10px rgba(0, 102, 255, 0.7), 0 0 20px rgba(102, 51, 204, 0.4); */
}

.hero .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.8), 0 0 30px rgba(102, 51, 204, 0.5);
}

.hero .btn-outline {
    background: transparent;
    color: #000000;
    border: 1px solid var(--gray-dark);
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #000000;
    color: #000000;
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #000000;
    border: 1px solid var(--gray-dark);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #000000;
    color: #000000;
}


/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
    border-color: rgba(0, 102, 255, 0.3);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--gray);
    font-weight: 500;
}


.preview-container{
text-align: center;
    background-color: #000000;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;

    -webkit-box-shadow: 1px -2px 4px 1px rgba(0,0,0,0.3); 
box-shadow: 1px -2px 4px 1px rgba(0,0,0,0.3);
    padding:20px;
}


.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.pillar-card {
  background: #000000;
  border: 1px solid rgba(0,102,255,0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.6);
}

.pillar-icon {
  font-size: 2.5rem;
  color: #0099ff;
  margin-bottom: 1rem;
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.pillar-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff;
}

.table-cta{
    height: 170px;
    padding: 12px;
    text-align: center;
    background-color: #0099ff;
    padding: 20px;


}
.table-cta p{
    margin-bottom:30px;
    margin-top: 20px;
      color: #ffffff;
}
.table-cta a {
        text-decoration-line: none;
        color: rgb(0, 0, 0);
        border-radius: 50px;
        background-color: white;
        padding: 12px;
}


.why-section {
  padding: 5rem 2rem;
  text-align: center;
}

.why-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #000000;
  position: relative;
}

.why-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0066ff;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.why-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.why-pillar {
  background: #ffffff;
  border: 1px solid rgba(0, 102, 255, 0.25);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: left;
}

.why-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.6);
}

.why-pillar-icon {
  font-size: 2rem;
  color: #0066ff;
  margin-bottom: 1rem;
}

.why-pillar h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #000000;
}

.why-pillar p {
  font-size: 0.95rem;
  color: #797979;
  line-height: 1.6;
}

.how-section {
  padding: 5rem 2rem;
  text-align: center;
  background: #f9fbff;
}

.how-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #000;
  position: relative;
}

.how-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0066ff;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  background: #fff;
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0066ff;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 102, 255, 0.3);
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #000;
}

.step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}


.pricing-section {
  padding: 6rem 2rem;
  text-align: center;
  background: #f9fbff;
}

.pricing-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #000;
  position: relative;
}

.pricing-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0066ff;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-card {
  background: #fff;
  border: 1px solid rgba(0, 102, 255, 0.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.2);
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #0066ff;
  margin-bottom: 1.5rem;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: #555;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing-features li {
  font-size: 0.95rem;
  color: #555;
  margin: 0.5rem 0;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #0066ff;
  color: #fff;
}

.btn-primary:hover {
  background: #0052cc;
}

.btn-secondary {
  background: #e6e6e6;
  color: #000;
}

.btn-secondary:hover {
  background: #ccc;
}


.final-cta {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #0066ff, #003cb3);
  color: #fff;
}

.final-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.final-cta .btn-primary {
  background: #fff;
  color: #0066ff;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.final-cta .btn-primary:hover {
  background: #e6e6e6;
  color: #003cb3;
}

/* Footer */
footer {
  background: #111;
  color: #bbb;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #bbb;
  margin: 0 0.75rem;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

footer .copyright {
  font-size: 0.85rem;
  color: #777;
}
