/* GLOBAL */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #0a0f1c;
    color: #e6faff;
    overflow-x: hidden;
}

/* Electric glow utility */
.glow {
    text-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;
}
.note {
    margin-top: 10px;
font-size: 30px;
text-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;
    font-style: italic;
    text-align: center;
}

/* HEADER */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    /* background: linear-gradient(90deg, red, green, blue, gold);*/
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #00eaff;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #00eaff;
    text-shadow: 0 0 15px #00eaff;
}

nav a {
    color: #e6faff;
    margin-left: 30px;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: #00eaff;
    text-shadow: 0 0 10px #00eaff;
}

/* HERO */

.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #001f33 0%, #000814 70%);
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #00eaff;
    text-shadow: 0 0 20px #00eaff;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* BUTTON */

.btn {
    margin-top: 25px;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #00eaff;
    color: #00eaff;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.btn:hover {
    background: #00eaff;
    color: #000;
    box-shadow: 0 0 20px #00eaff;
}

/* VISION CARDS */

.vision {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 80px 20px;
    flex-wrap: wrap;
}

.card {
    background: rgba(0, 20, 40, 0.7);
    border: 1px solid #00eaff;
    padding: 30px;
    width: 220px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px #00eaff;
}

.learn { border-color: red; }
.build { border-color: green; }
.inspire { border-color: blue; }
.innovate { border-color: gold; }

.innovate h2 { color: gold; }

/* CONTENT */

.content {
    max-width: 1000px;
    margin: auto;
    padding: 10px 20px;
}

.content h1 {
    margin-bottom: 15px;
    color: #00eaff;
}

.section-box {
    background: rgba(0, 15, 30, 0.6);
    padding: 30px;
    margin-bottom: 25px;
    border-left: 3px solid #00eaff;
    transition: 0.3s;
}
.section-box h2{
	color:gold;
	text-decoration: underline;
}

.section-box:hover {
    box-shadow: 0 0 20px #00eaff;
	
}

/* PRICING CARDS */

.price-card {
    background: rgba(0, 10, 25, 0.8);
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid #00eaff;
    border-radius: 10px;
}

.price-card h2 {
    color: #00eaff;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 30px;
    background: #000814;
    border-top: 1px solid #00eaff;
	font-size: 1rem;
	color: gold;
}

/* WhatsApp CTA */

.whatsapp {
    display: inline-block;
    margin-top: 20px;
    color: #00ff88;
    text-decoration: none;
    border: 2px solid #00ff88;
    padding: 10px 25px;
    transition: 0.3s;
}

.whatsapp:hover {
    background: #00ff88;
    color: black;
    box-shadow: 0 0 15px #00ff88;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 68px;
    height: 68px;
    background: #00eaff;	/*0b0f1a;*/
    color: black;	/*00ff88;*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    overflow: visible;
}

/* Neon Ring */
.ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: conic-gradient(
        #00eaff,   /* Electric Blue */
        #003cff,   /* Deep Tech Blue */
        #ff0033,   /* Red */
        #ffd700,   /* Gold */
        #00ff88,   /* Tech Green */
        #00eaff
    );
    filter: blur(2px);
    animation: rotateGlow 10s linear infinite;
    z-index: -1;
}

/* Policy Styling */
.policy-section {
  padding: 40px;
  max-width: 900px;
  margin: auto;
  color: #e0f7ff;
}

.policy-section h1 {
  color: #00fefe;
  margin-bottom: 20px;
}

.policy-section h2 {
  color: #ffd700;
  margin-top: 25px;
}

.policy-section ul {
  margin-left: 20px;
  line-height: 1.6;
}

.policy-section li {
  margin-bottom: 8px;
}

.policy-intro {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
/* Slow Rotation Animation */
.keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Button Glow */
.floating-whatsapp svg {
    z-index: 2;
}

/* Hover Effect */
.floating-whatsapp:hover {
    transform: scale(1.08);
}

/* Tooltip */
.tooltip {
    position: absolute;
    right: 80px;
    background: #0b0f1a;
    color: #00eaff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s ease;
    box-shadow: 0 0 12px #00eaff;
}

.floating-whatsapp:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}
