 :root {
            /* Light Mode Colors */
            --bg-primary: #FFFFFF;
            --bg-secondary: #F8F9FF;
            --bg-overlay: rgba(0, 0, 0, 0.05);
            --text-primary: #1a1a2e;
            --text-secondary: #4a4a6a;
            --text-muted: #8888aa;
            --border-subtle: rgba(0, 0, 0, 0.1);
            --border-medium: rgba(0, 0, 0, 0.2);
            --brand-primary: #4169E1;
            --brand-secondary: #9370DB;
            --brand-tertiary: #87CEEB;
            --brand-hover: rgba(65, 105, 225, 0.1);
            --brand-active: #5a7fd9;
            --card-bg: #FFFFFF;
            --shadow-color: rgba(65, 105, 225, 0.1);
             --accent-color: #16a34a;
             --ktse-bg: #f6f8fc;
            --ktse-card-bg: #ffffff;
            --ktse-border: rgba(0,0,0,0.08);

            --ktse-title: #0f172a;
            --ktse-text: #475569;
            --ktse-muted: #64748b;

            --ktse-accent: #16a34a;
            --ktse-accent-soft: rgba(22,163,74,0.12);
        }
        
        [data-theme="dark"] {
            /* Dark Mode Colors */
            --bg-primary: #0a0a1a;
            --bg-secondary: #151525;
            --bg-overlay: rgba(255, 255, 255, 0.05);
            --text-primary: #FFFFFF;
            --text-secondary: rgba(255, 255, 255, 0.85);
            --text-muted: #8888aa;
            --border-subtle: rgba(255, 255, 255, 0.1);
            --border-medium: rgba(255, 255, 255, 0.2);
            --brand-primary: #5B8FFF;
            --brand-secondary: #B19CD9;
            --brand-tertiary: #A0D8F1;
            --brand-hover: rgba(91, 143, 255, 0.1);
            --brand-active: #7BA8FF;
            --card-bg: #1a1a2e;
            --shadow-color: rgba(91, 143, 255, 0.15);
            --accent-color: #22c55e;
            --ktse-bg: #0b0f1a;
            --ktse-card-bg: rgba(255,255,255,0.05);
            --ktse-border: rgba(255,255,255,0.08);

            --ktse-title: #ffffff;
            --ktse-text: #cbd5e1;
            --ktse-muted: #94a3b8;

            --ktse-accent: #22c55e;
            --ktse-accent-soft: rgba(34,197,94,0.15);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        
        /* Navigation */
        .navbar {
            background: var(--bg-primary);
            border-bottom: 1px solid var(--border-subtle);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: -2px;
            z-index: 1000;
            transition: all 0.4s ease;
        }
        


.contract-card {
  width: 100%;
/*  max-width: 520px;*/
  padding: 10px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0d6efd, #4fc3f7);
  box-shadow: 0 15px 40px rgba(13, 110, 253, 0.35);
  animation: fadeIn 0.8s ease-in-out;
}

.contract-title {
  text-align: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
}

.contract-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  padding: 14px;
  border-radius: 12px;
}

.contract-box span {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  word-break: break-all;
}

.copy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #0d6efd, #03a9f4);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
}

.copy-btn:active {
  transform: scale(0.95);
}

.copy-msg {
  text-align: center;
  color: #fff;
  font-size: 14px;
  margin-top: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.copy-msg.show {
  opacity: 1;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .contract-title {
    font-size: 18px;
  }

  .copy-btn {
    font-size: 13px;
    padding: 8px 12px;
  }

  .contract-box span {
    font-size: 13px;
  }
}

        .navbar.scrolled {
            background: var(--bg-primary);
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 20px var(--shadow-color);
        }
        
        .navbar-brand {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        

        .theme-toggle {
            background: var(--bg-secondary);
            border: 1px solid var(--border-subtle);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: 20px;
            color: var(--text-primary);
        }
        
        .theme-toggle:hover {
            background: var(--brand-hover);
            border-color: var(--brand-primary);
            transform: scale(1.1);
        }

        .nav-link {
            color: var(--text-muted) !important;
            font-size: 16px;
            font-weight: 400;
            margin: 0 15px;
            transition: color 0.3s ease;
            position: relative;
            padding-left: 0px !important;
            padding-right: 0px !important;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--text-primary) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--brand-primary);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Buttons */
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
            color: #FFFFFF;
            border: none;
            border-radius: 8px;
            padding: 14px 32px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px var(--shadow-color);
            filter: brightness(1.1);
        }
        
        .btn-secondary-custom {
            background: var(--bg-secondary);
            color: var(--text-primary);
            border: 2px solid var(--border-medium);
            border-radius: 8px;
            padding: 14px 32px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-secondary-custom:hover {
            background: var(--brand-hover);
            border-color: var(--brand-primary);
            color: var(--brand-primary);
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 122px;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--brand-tertiary) 0%, var(--brand-primary) 50%, var(--brand-secondary) 100%);
            opacity: 0.1;
            z-index: 0;
        }
        
        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                repeating-linear-gradient(0deg, transparent, transparent 1px, var(--border-subtle) 1px, transparent 100px),
                repeating-linear-gradient(-90deg, transparent, transparent 1px, var(--border-subtle) 1px, transparent 100px);
            opacity: 0.3;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 66px;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -2px;
            margin-bottom: 24px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-subtitle {
            font-size: 24px;
            font-weight: 400;
            color: var(--text-secondary);
            margin-bottom: 40px;
            animation: fadeInUp 1s ease 0.2s backwards;
        }
        
        .hero-gradient-text {
            background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 50%, var(--brand-tertiary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-buttons {
            animation: fadeInUp 1s ease 0.4s backwards;
        }
        
        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease 0.6s backwards;
        }
        
        .hero-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 20px 60px var(--shadow-color);
            /*border: 1px solid var(--border-subtle);*/
        }
        
        /* Section Styles */
        section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }
        
        .section-subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 60px;
        }
        
        /* Feature Cards */
        .feature-card {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 40px;
            transition: all 0.4s ease;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            border-color: var(--brand-primary);
            box-shadow: 0 16px 48px var(--shadow-color);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--brand-hover);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 28px;
            color: var(--brand-primary);
        }
        
        .feature-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        
        .feature-description {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        /* Stats Section */
        .stats-section {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--brand-primary);
            margin-bottom: 8px;
        }
        
        .stat-label {
            font-size: 16px;
            color: var(--text-secondary);
        }
        
        /* Team Cards */
        .team-card {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s ease;
            margin-bottom: 30px;
        }
        
        .team-card:hover {
            transform: translateY(-8px);
            border-color: var(--brand-primary);
            box-shadow: 0 16px 48px var(--shadow-color);
        }
        
        .team-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        .team-info {
            padding: 24px;
        }
        
        .team-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .team-role {
            font-size: 16px;
            color: var(--brand-primary);
            margin-bottom: 12px;
        }
        
        .team-bio {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        /* Roadmap */
        .roadmap-item {
            position: relative;
            padding-left: 60px;
            margin-bottom: 60px;
        }
        
        .roadmap-marker {
            position: absolute;
            left: 0;
            top: 0;
            width: 40px;
            height: 40px;
            background: var(--brand-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            font-weight: 700;
            font-size: 16px;
        }
        
        .roadmap-marker::after {
            content: '';
            position: absolute;
            top: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100px;
            background: var(--border-subtle);
        }
        
        .roadmap-item:last-child .roadmap-marker::after {
            display: none;
        }
        
        .roadmap-phase {
            font-size: 14px;
            color: var(--brand-primary);
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .roadmap-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        
        .roadmap-description {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        /* Tokenomics Chart */
        .chart-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 40px;
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;;
        }
        
        /* Partner Logos */
        .partner-logo {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            height: 120px;
            margin-bottom: 30px;
        }
        
        .partner-logo:hover {
            border-color: var(--brand-primary);
            transform: translateY(-4px);
            box-shadow: 0 8px 24px var(--shadow-color);
        }
        
        .partner-logo h5 {
            margin: 0;
            font-size: 24px;
            font-weight: 600;
            color: var(--text-secondary);
        }
        
        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-control {
            background: var(--bg-secondary);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            color: var(--text-primary);
            padding: 14px 20px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            background: var(--bg-secondary);
            border-color: var(--brand-primary);
            color: var(--text-primary);
            box-shadow: 0 0 0 0.2rem var(--brand-hover);
            outline: none;
        }
        
        .form-control::placeholder {
            color: var(--text-muted);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        .footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            padding: 60px 0 30px;
        }
        
        .footer-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 16px;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        
        .footer-link:hover {
            color: var(--brand-primary);
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--bg-primary);
            border: 1px solid var(--border-subtle);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: var(--text-primary);
            margin-right: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--brand-primary);
            color: #000000;
            border-color: var(--brand-primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid var(--border-subtle);
            color: var(--text-muted);
            font-size: 14px;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        .fade-in {
            animation: fadeIn 1s ease;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 40px;
            }
            
            .hero-subtitle {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .section-subtitle {
                font-size: 16px;
            }
            
            .nav-link {
                margin: 10px 30px;
            }
            
            section {
                padding: 60px 0;
            }
        }

        .navbar-toggler {
    border-color: rgba(13, 110, 253, 0.6);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(13,110,253,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.up-down{
  animation: up-down linear 4s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  -webkit-animation: up-down linear 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: up-down linear 4s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -o-animation: up-down linear 4s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -ms-animation: up-down linear 4s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
}

@keyframes up-down{
  0% {
    transform:  translate(1px,20px)  ;
  }
  24% {
    transform:  translate(1px,30px)  ;
  }
  50% {
    transform:  translate(1px,12px)  ;
  }
  74% {
    transform:  translate(1px,22px)  ;
  }
  100% {
    transform:  translate(1px,22px)  ;
  }
}

@-moz-keyframes up-down{
  0% {
    -moz-transform:  translate(1px,20px)  ;
  }
  24% {
    -moz-transform:  translate(1px,30px)  ;
  }
  50% {
    -moz-transform:  translate(1px,12px)  ;
  }
  74% {
    -moz-transform:  translate(1px,22px)  ;
  }
  100% {
    -moz-transform:  translate(1px,22px)  ;
  }
}

@-webkit-keyframes up-down {
  0% {
    -webkit-transform:  translate(1px,20px)  ;
  }
  24% {
    -webkit-transform:  translate(1px,30px)  ;
  }
  50% {
    -webkit-transform:  translate(1px,12px)  ;
  }
  74% {
    -webkit-transform:  translate(1px,22px)  ;
  }
  100% {
    -webkit-transform:  translate(1px,22px)  ;
  }
}

@-o-keyframes up-down {
  0% {
    -o-transform:  translate(1px,20px)  ;
  }
  24% {
    -o-transform:  translate(1px,30px)  ;
  }
  50% {
    -o-transform:  translate(1px,12px)  ;
  }
  74% {
    -o-transform:  translate(1px,22px)  ;
  }
  100% {
    -o-transform:  translate(1px,22px)  ;
  }
}

@-ms-keyframes up-down {
  0% {
    -ms-transform:  translate(1px,20px)  ;
  }
  24% {
    -ms-transform:  translate(1px,30px)  ;
  }
  50% {
    -ms-transform:  translate(1px,12px)  ;
  }
  74% {
    -ms-transform:  translate(1px,22px)  ;
  }
  100% {
    -ms-transform:  translate(1px,22px)  ;
  }
}


.about-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    transition: background-color 0.3s ease;
}

.about-image-wrapper {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 35px var(--shadow-color);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Typography */
.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.features-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    transition: background-color 0.3s ease;
}

.feature-card {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 25px 50px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-title {
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 0.3px;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

/* Icons & Headings */
.feature-card h5 {
    color: var(--text-primary);
    font-weight: 600;
}

.feature-card i {
    color: var(--accent-color);
}

.feature-card ul {
    padding-left: 18px;
}

.feature-card ul li {
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
}

.feature-card ul li::marker {
    color: var(--accent-color);
}

@media (max-width: 991px) {
    .feature-card {
        padding: 35px;
    }
}

@media (max-width: 576px) {
    .feature-card {
        padding: 25px;
    }
    .feature-title {
        font-size: 1.5rem;
    }
}

.partner-logo {
    background: var(--card-bg);
    border-radius: 18px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px var(--shadow-color);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.partner-logo img {
    max-width: 140px;
    max-height: 60px;
    filter: var(--logo-filter);
    transition: all 0.35s ease;
}

/* Hover Effects */
.partner-logo:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 25px 55px rgba(34, 197, 94, 0.35);
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

/* Accent Border Animation */
.partner-logo::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 2px solid transparent;
    transition: border 0.35s ease;
}

.partner-logo:hover::before {
    border-color: var(--accent-color);
}

/* Responsive */
@media (max-width: 576px) {
    .partner-logo {
        height: 100px;
    }
    .partner-logo img {
        max-width: 120px;
    }
}
/*
.navbar-brand img{
    width: 40%;
}*/
/* Default (mobile first) */
.logo {
  height: 40px;
  width: auto;
}

/* Desktop logo bigger */
@media (min-width: 992px) {
  .logo {
    height: 64px;   /* ← increase as needed (60–72px ideal) */
  }
}



/* Theme toggle */
/*.theme-toggle {
  cursor: pointer;
  font-size: 18px;
  color: #fff;
}*/



@media (min-width: 1200px) {
  .logo {
    height: 70px;
  }
}

/* Top TradingView Ticker */
.tv-ticker-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #0c0e27;
}

/* Ensure widget fills width */
.tradingview-widget-container {
    width: 100%;
}

/* Push page content below ticker */
body {
    padding-top: 46px; /* Adjust if ticker height changes */
}

/* Mobile Optimization */
@media (max-width: 768px) {
    body {
        padding-top: 52px;
    }
}


/* Base */
.theme-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 18px;
}

/* Mobile only */
@media (max-width: 991.98px) {

    /* Lock navbar height */
    .navbar {
        position: relative;
        min-height: 64px; /* IMPORTANT */
        z-index: 1050;
    }

    /* Anchor toggler */
    .navbar-toggler {
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        z-index: 1052;
    }

    /* Anchor theme toggle */
    .theme-toggle {
        position: absolute;
        top: 50%;
        right: 80px;
        transform: translateY(-50%);
        z-index: 1051;
    }

    /* Force menu to open BELOW navbar */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background:  var(--bg-primary);
    }
}

.ktse-section {
  padding: 80px 20px;
  background: radial-gradient(circle at top, #0f2027, #000);
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.ktse-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.ktse-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.ktse-title span {
  background: linear-gradient(90deg, #00ffcc, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ktse-subtitle {
  font-size: 18px;
  color: #b5c7d3;
  margin-bottom: 50px;
}

.ktse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.ktse-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.ktse-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.3);
  border-color: rgba(0, 255, 204, 0.5);
}

.ktse-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #00ffcc;
}

.ktse-card p {
  font-size: 15px;
  color: #dbe7ee;
  line-height: 1.6;
}
