
	.glowing-link-wrapper {
  position: relative; /* ensures dropdown is positioned relative to this wrapper */
  display: inline-block; /* shrink to button size */
  margin: 0 auto; /* center the wrapper itself if it's a block-level parent */
}

.glowing-dropdown {
  display: none;
  position: absolute;
  top: 110%; /* below the button */
  left: 50%; /* start at 50% of parent */
  transform: translateX(-50%); /* center horizontally */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  min-width: 220px;
  text-align: left;
  z-index: 999;
}

/* Dropdown links */
.glowing-dropdown a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.glowing-dropdown a:last-child {
  border-bottom: none;
}

.glowing-dropdown a:hover {
  background: #ff6f61;
  color: #fff;
}

/* Show dropdown on hover */
.glowing-link-wrapper:hover .glowing-dropdown {
  display: block;
}

/* Ensure wrapper is centered on desktop */
@media (min-width: 1024px) {
  .glowing-link-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

    /* Reset and base styles */
    * {
        box-sizing: border-box;
    }

    body { 
        margin: 0; 
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
        scroll-behavior: smooth; 
        background: #fff; 
        color: #333; 
        line-height: 1.6;
    }

    /* Header styles - responsive */
    header { 
        background: #fff; 
        position: fixed; 
        top: 0; 
        width: 100%; 
        z-index: 100; 
        padding: 10px 20px; 
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
    }

    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 8px;
        border-radius: 4px;
        transition: background-color 0.3s ease;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
    }

    .hamburger:hover {
        background-color: #f5f5f5;
    }

    nav ul { 
        list-style: none; 
        margin: 0; 
        padding: 0; 
        display: flex; 
        justify-content: center; 
        gap: 20px; 
        flex-wrap: wrap; 
        align-items: center;
    }

    nav a { 
        text-decoration: none; 
        color: #333; 
        font-weight: 500; 
        padding: 10px 15px; 
        border-radius: 4px;
        transition: all 0.3s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    nav a:hover, nav a.active { 
        color: #ff6f61; 
        background-color: rgba(255, 111, 97, 0.1);
    }

    .logo-link {
        font-weight: bold;
      font-size: 20px;
      color: var(--primary);
      text-decoration: none;
    }

    /* Dropdown styles */
    .dropdown-wrapper {
        position: relative;
    }

    .dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        border-radius: 8px;
        padding: 8px 0;
        min-width: 200px;
        z-index: 1000;
    }

    .dropdown-wrapper.active .dropdown {
        display: block;
    }

    .dropdown li {
        margin: 0;
    }

    .dropdown a {
        padding: 12px 16px;
        display: block;
        color: #333;
        border-radius: 0;
    }

    .dropdown a:hover {
        background-color: #f8f8f8;
        color: #ff6f61;
    }
@media (min-width:769px){
.dropdown-wrapper:hover .dropdown{
display:block;
}
}
    /* Main content styles */
    section { 
        padding: 80px 20px; 
        max-width: 1200px; 
        margin: 0 auto; 
    }

    .hero{
padding:120px 8%;
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
flex-wrap:wrap;
}

/* TEXT SIDE */

.hero-text{
flex:1;
max-width:520px;
}
.hero-text a{
display:inline-block;
margin-right:12px;
margin-top:10px;
}
.hero h1{
font-size:44px;
font-family:Poppins;
margin-bottom:20px;
line-height:1.2;
}

.hero p{
font-size:18px;
margin-bottom:30px;
color:#555;
}

/* IMAGE SIDE */

.hero img{
flex:1;
max-width:520px;
width:100%;
border-radius:12px;
object-fit:cover;
}

    .btn{
	padding:14px 26px;
	border:none;	
	border-radius:8px;
	background:#ff6f61;
	color:white;
	font-size:16px;
	cursor:pointer;
	margin-right:10px;
	}


    .btn:hover {
        background: #e55a50;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 111, 97, 0.3);
    }

    /* Section headings */
    h2 {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
        margin-bottom: clamp(20px, 4vw, 30px);
        color: #333;
        text-align: center;
    }

    h3 {
        font-size: clamp(1.1rem, 3vw, 1.4rem);
        margin-bottom: 10px;
        color: #333;
    }

    p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        line-height: 1.6;
        margin-bottom: 15px;
    }

    /* Services cards - responsive */
    .services .card { 
        display: flex; 
        align-items: flex-start; 
        gap: 15px; 
        margin-bottom: 30px; 
        padding: 20px;
        background: #f8f9fa;
        border-radius: 8px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .services .card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    .services .icon { 
        font-size: clamp(24px, 5vw, 30px); 
        color: #ff6f61; 
        width: 50px;
        flex-shrink: 0;
    }

    /* Form styles - responsive */
    form {
        max-width: 600px;
        margin: 0 auto;
    }

    form input, form textarea, form select { 
        width: 100%; 
        padding: clamp(10px, 2vw, 15px); 
        margin-bottom: 15px; 
        border: 2px solid #e0e0e0; 
        border-radius: 6px;
        font-size: clamp(14px, 2.5vw, 16px);
        transition: border-color 0.3s ease;
    }

    form input:focus, form textarea:focus, form select:focus {
        outline: none;
        border-color: #ff6f61;
        box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.1);
    }

    /* Testimonials section */
    .testimonials {
        display: grid;
        gap: 30px;
        margin-top: 40px;
    }

    .testimonial {
        background: #f8f9fa;
        padding: 25px;
        border-radius: 8px;
        border-left: 4px solid #ff6f61;
    }

    .testimonial p {
        font-style: italic;
        margin-bottom: 15px;
        font-size: clamp(0.9rem, 2.2vw, 1rem);
    }

    .testimonial strong {
        color: #ff6f61;
        font-size: clamp(0.85rem, 2vw, 0.9rem);
    }

    /* Footer */
    footer { 
        text-align: center; 
        padding: clamp(20px, 4vw, 40px) 20px; 
        font-size: clamp(0.8rem, 2vw, 0.9rem); 
        color: #777; 
        background: #f5f5f5; 
    }

    /* Contact info */
    .contact-info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin: 30px 0;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        color: #333;
    }

    /* Disclaimer modal */
    .fade-in-modal { animation: fadeIn 0.4s ease-out; }
    .fade-out-modal { animation: fadeOut 0.4s ease-out; }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }

    #bci-disclaimer-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.8);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 10000;
        padding: 20px;
    }

    .disclaimer-content {
        background: white;
        padding: clamp(20px, 4vw, 40px);
        border-radius: 12px;
        max-width: 600px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .disclaimer-content h3 {
        color: #ff6f61;
        margin-bottom: 20px;
    }

    .disclaimer-content p {
        margin-bottom: 15px;
        font-size: clamp(0.9rem, 2.2vw, 1rem);
    }

    /* Mobile styles */
    @media (max-width: 768px) {
        body {
            padding-top: 80px;
        }

        header {
            padding: 15px 20px;
        }

         .hamburger {
    display: flex;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    }

        nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            border-radius: 0 0 8px 8px;
        }

        nav.active {
            display: block;
        }

        nav ul {
            flex-direction: column;
            gap: 0;
            padding: 10px 0;
        }

        nav li {
            border-bottom: 1px solid #f0f0f0;
        }

        nav li:last-child {
            border-bottom: none;
        }

        nav a {
            padding: 15px 20px;
            display: block;
            border-radius: 0;
            justify-content: flex-start;
        }

         .header-container {
    justify-content: center;
    position: relative;
  }

.logo-link {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
        /* Mobile dropdown */
        .dropdown {
            position: static;
            box-shadow: none;
            background: #f8f8f8;
            margin-left: 20px;
            border-radius: 0;
        }

        .dropdown a {
            padding: 12px 25px;
            font-size: 14px;
        }

        /* Mobile hero adjustments */
        .hero {
            padding-top: 100px;
            padding-left: 10px;
            padding-right: 10px;
        }

        section {
            padding: 40px 15px;
        }

        /* Mobile services cards */
        .services .card {
            flex-direction: column;
            text-align: center;
            padding: 20px 15px;
        }

        .services .icon {
            align-self: center;
            margin-bottom: 10px;
        }

        /* Mobile testimonials */
        .testimonials {
            gap: 20px;
        }

        .testimonial {
            padding: 20px 15px;
        }

        /* Mobile contact info */
        .contact-info {
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            justify-content: center;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }
    }

    /* Tablet styles */
    @media (min-width: 769px) and (max-width: 1024px) {
        .services .card {
            padding: 25px 20px;
        }

        .testimonials {
            grid-template-columns: 1fr 1fr;
        }

        nav ul {
            gap: 15px;
        }

        nav a {
            padding: 8px 12px;
            font-size: 14px;
        }
    }

    /* Large desktop styles */
    @media (min-width: 1200px) {
        .testimonials {
            grid-template-columns: repeat(3, 1fr);
        }

        .services {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .services h2 {
            grid-column: 1 / -1;
        }
    }

    /* Accessibility improvements */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }

    @media (prefers-contrast: high) {
        .btn {
            border: 2px solid currentColor;
        }

        .services .card {
            border: 2px solid #e0e0e0;
        }
		
    }
	/* Scoreboard Counter */
.scoreboard-counter {
  position: relative;
  max-width: 300px;
  margin: 70px auto 35px;
  padding: 22px 26px 24px;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

/* Brand Accent Strip */
.sb-accent {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
}

/* Header */
.sb-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

/* Live Pulse Dot */
.sb-pulse {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Label */
.sb-label {
  font-size: 11px;
  font-weight: 600;
  color: #00bcd4;
  letter-spacing: 1.2px;
}

/* Number */
.sb-number {
  margin-top: 4px;
  font-size: 34px;
  font-weight: 800;
  color: #f8fafc;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}


