/* Custom CSS Variables */
:root {
    --primary-dark: #00282A;
    --accent-yellow: #FFC107;
    --accent-orange: #FF9800;
    --white: #FFFFFF;
    --black: #000000;
    --light-grey: #F5F5F5;
    --text-dark: #00282A;
    --text-light: #666666;
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Headings use Keania One */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title-white,
.section-title-dark,
.service-title,
.strategy-title,
.footer-brand,
.footer-title {
    font-family: 'Keania One', cursive;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Paragraphs and body text use Segoe UI */
p, span, li, a, .hero-subtitle, .service-description, .strategy-description,
.benefit-text, .feature-text, .empowering-text, .nav-link, .btn,
.progress-label, .team-name, .team-role, .overview-label, .footer-description,
.footer-links a, .footer-contact, .accordion-button, .accordion-body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

.custom-container{
     max-width: 1165px;
     margin:auto;
}
.title-container{
    text-align:center;
    padding-bottom:30px;
    position: relative;
    /*z-index: 1;*/
}
.title-container h2{
    font-size: 3.5rem;
    padding:16px 0px 0px;
    margin-bottom:10px;
}
.title-container .title-bg-img{
    position: absolute;
    width: 800px;
    object-fit: contain;
}
.yellow-text{
    color:#F79A01;
}
.text-white{
    color:#ffffff;
}
.Keania-font{
    font-family: 'Keania One', cursive;
}
/* Navigation Styles */
.header-wrapper .navbar-brand img{
    max-width:180px;
}
.header-wrapper{
    position:relative;
}

.navbar {
    transition: var(--transition);
    position: absolute;
    top:35px;
    border-radius: 12px; /* optional */
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
    backdrop-filter: blur(20px);
    padding: 20px 10px;
}
.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px; /* border thickness */
    background: radial-gradient(
        95.16% 139.58% at 4.84% 0%,
        #D8FFF8 0%,
        #D8FFF8 100%
    );
    border-radius: inherit;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.navbar-brand {
    font-family: 'Keania One', cursive;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-dark) !important;
    letter-spacing: 0.5px;
}

.nav-link {
    font-weight: 300;
    color: var(--white) !important;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: #f79d08 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-yellow);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 60%;
}

.btn-signup {
    background: #F79A01;
    font-size: 18px;
    color: var(--white) !important;
    padding: 8px 30px;
    border-radius: 25px;
    font-weight: 300;
    border: none;
    transition: var(--transition);
    box-shadow: 0px 0.88px 0px 0px #FFFFFF66 inset;
    box-shadow: 0px -2.65px 0px 0px #00000033 inset;
    box-shadow: 0px 0px 0px 3.54px #FFFFFF12;
    box-shadow: 0px 0px 159.19px 0px #F79A0233;
}

.btn-signup:hover {
    background: #F79A01;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Hero Section */
.hero-section {
    background: var(--primary-dark);
    color: var(--white);
    padding : 180px 0px 100px;
    overflow: hidden;
    position: relative;
}
.networkss-lines-2 img {
        position: absolute;
    left: 0;
    width: 100vw;
    top: -20%;
    opacity: 0.5;
    transform-origin: center;
    z-index: 1;
    
    pointer-events: none;
    mask-image: linear-gradient(
  to bottom,
  transparent 0%,
  black 18%,
  black 100%
);

}
/* STATIC GRID */
.network-lines img {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;        /* covers entire screen */
    opacity: 0.55;
    transform: scaleY(-1);    /* upside down */
    transform-origin: center;
    z-index: 1;
    pointer-events: none;
    /* SOFT FADE TOP + BOTTOM */
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 18%,
        black 82%,
        transparent 100%
    );

    /* -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 18%,
        black 82%,
        transparent 100%
    ); */
}



/* FALLING DOTS CANVAS */
.falling-dots {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 4rem;
    font-weight: 400;
    margin: 1rem 0;
    line-height: 1.2;
}
.sub-heading-hero{
    background: linear-gradient(0deg, #F79A01 0%, #FFB43A 100%);
    border: 0.5px solid #FFD029;
    padding:4px 15px;
    color:#1F2937;
    border-radius: 25px;
}
.word-wrapper {
  display: inline-block;
  height: 1.2em;
  overflow: hidden;
  vertical-align: bottom;
}

.word-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: wordSlide 6s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.word-list span {
  height: 1.2em;
  display: flex;
  align-items: center;
  font-family: 'Keania One', cursive;
  color: #F79A01;
}

@keyframes wordSlide {
  0%, 20% {
    transform: translateY(0);
  }

  33%, 53% {
    transform: translateY(-1.2em);
  }

  66%, 86% {
    transform: translateY(-2.4em);
  }

  100% {
    transform: translateY(0);
  }
}


.hero-subtitle {
    font-size: 1.25rem;
    color: #D2D0DD;
    margin-bottom: 2rem;
}

.btn-hero {
    background: transparent;
    color: #F79A01;
    border:1px solid #F79A01; 
    padding: 10px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
    background:#F79A01;
    color:#ffffff;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}
.svg-color{
    fill: currentColor;
}
/* Hero Illustration */