/* Global Reset & Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* FICER Professional Theme */
  --primary: #1B5EA8;          /* Main Blue (Logo color) */
  --secondary: #0F2B5B;        /* Dark Navy */
  --accent: #5BA8F7;           /* Light Blue */
  --success: #28a745;          /* Green */
  --white: #ffffff;
  --bg-light: #f0f6ff;         /* Body Background */
  --text-dark: #0F2B5B;
  --text-muted: #555570;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

::selection {
  background: var(--primary);
  color: var(--white);
}


/* Dot (Inner) */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #1565C0; /* Hardcoded FICER Blue */
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999; /* Circle se zyada z-index */
    transform: translate(-50%, -50%); /* Center alignment */
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Circle (Outer Outline) */
.cursor-outline {
    width: 35px;
    height: 35px;
    border: 2px solid rgba(21, 101, 192, 0.5); /* Semi-transparent blue */
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%); /* Center alignment */
    transition: width 0.3s ease, height 0.3s ease, border 0.3s ease, background-color 0.3s ease;
}

/* Hover Effects */
.cursor-dot.hover {
    width: 12px;
    height: 12px;
    background-color: #0a2e52; /* Deep Navy */
}
.cursor-outline.hover {
    width: 55px;
    height: 55px;
    border-color: rgba(21, 101, 192, 0.8);
    background-color: rgba(21, 101, 192, 0.08);
}

/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* WhatsApp Green */
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none !important;
    z-index: 99990; /* Cursor ke neeche, lekin sab kuch ke upar */
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: #fff !important;
    animation: none; /* Hover par animation ruk jaye */
}

/* Pulse Animation */
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile View */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}

/* ==========================================
   ANIMATED NETWORK / TREE BACKGROUND
   ========================================== */
#network-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Sab kuch ke peeche rahega */
    pointer-events: none; /* Clicks block nahi karega */
    background-color: #f4f7f6; /* Aapki website ka background color */
}

/* Agar kisi specific section par background white chahiye (jaise cards), 
   toh unka z-index 1 ya auto rakhein, wo canvas ko cover kar lenge */


/* ==========================================
   CANVAS Z-INDEX UPDATE (Pehle -1 tha, ab -2)
   ========================================== */
#network-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* Orbs ke peeche jaane ke liye */
    pointer-events: none;
    background-color: #f4f7f6; 
}

/* ==========================================
   FLOATING GLOWING ORBS (Parallax Shapes)
   ========================================== */
.glowing-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px); /* Yehi glow/matti effect deta hai */
    opacity: 0.3; /* Halka sa transparent */
    z-index: -1; /* Canvas (dots) ke neeche, content ke upar */
    pointer-events: none;
    transition: transform 0.2s ease-out; /* JS scroll ke liye smoothness */
}

#orb1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(21, 101, 192, 0.8), rgba(100, 255, 218, 0.2)); /* Blue to Cyan */
    top: 5%;
    left: 5%;
}

#orb2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.8), rgba(33, 150, 243, 0.2)); /* Purple to Blue */
    top: 60%;
    right: 5%;
}

#orb3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.6), rgba(233, 30, 99, 0.2)); /* Orange to Pink */
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
}

/* Mobile par orbs chote kar dein taake speed na rakhein */
@media (max-width: 768px) {
    #orb1 { width: 250px; height: 250px; }
    #orb2 { width: 200px; height: 200px; }
    #orb3 { width: 180px; height: 180px; }
    .glowing-orb { filter: blur(60px); opacity: 0.2; }
}