/* styles.css - Complete CSS for Bizlink254 Website */

/* ===== Base Styles ===== */
:root {
    --navy: #1A2A60;
    --gold: #E6B800;
    --gray: #555555;
    --light-gray: #f0f0f0;
    --bg: #ffffff;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}


h1, h2, h3, h4, h5 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Layout Styles ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--gold);
}

/* ===== Button Styles ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow);
}

.btn:hover {
    background-color: #d1a400;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--navy);
}

/* ===== Header & Navigation ===== */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    width: 120px;
    height: 45px;
    transform: scale(1.5);
    transform-origin: center;
    overflow: hidden;
    padding: 10px 0;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--navy);
}

.logo span {
    color: var(--gold);
}

/* Desktop Navigation */

.nav-menu {
    display: flex;
    align-items: baseline; /* vertically center menu items */
    position: static;
    width: auto;
    background: transparent;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    transition: none;
}


.nav-item {
    list-style: none;
    position: relative;
    margin-left: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    padding: 1rem 0; /* more vertical space */
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: 4px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    color: var(--gray);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--navy);
    padding-left: 1.7rem;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
    z-index: 1001;
}

/* ===== Hero Section ===== */
.hero {
    margin-top: 50px;
    margin-bottom: 5px;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, rgba(26,42,96,0.9) 0%, rgba(26,42,96,0.95) 100%), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3') no-repeat center center/cover;
    color: var(--white);
}

.hero-content {
    max-width: 700px;
}
.hero {
  text-align: left;
  padding: 100px 20px;
  color: white; /* keep text visible */
  /* ❌ remove background here so your own stays */
}

.dots {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.dots span {
  width: 10px;
  height: 10px;
  background: #E6B800; /* gold dots */
  border-radius: 50%;
  display: inline-block;
  animation: bounce 1.2s infinite ease-in-out;
}

.dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
}


.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

@keyframes dwindle {
  0% {
    transform: scale(0.5) rotate(-2deg);
    opacity: 0;
    text-shadow: 0 0 10px rgba(0,0,0,0.3);
  }
  30% {
    transform: scale(1.1) rotate(1deg);
    opacity: 0.8;
  }
  60% {
    transform: scale(0.95) rotate(-0.5deg);
  }
  80% {
    transform: scale(1.02) rotate(0.5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
    text-shadow: none;
  }
}

.animate-text {
  display: inline-block;
  transform-origin: center bottom;
  animation: dwindle 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== Services Section ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    background-color: var(--navy);
    color: var(--gold);
    font-size: 2.5rem;
    padding: 1.5rem;
    text-align: left;
    border-radius: 10px;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* ===== Why Choose Us ===== */
.why-us {
    
    background-color: var(--white);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background-color:rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    margin-bottom: 10px;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* ===== Portfolio Section ===== */
.portfolio {
    background-color: var(--white);
    margin-top: 10px;
    margin-bottom: 10px;
}


.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--navy);
    border-radius: 30px;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--navy);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 250px;
    box-shadow: var(--shadow);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 42, 96, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
    text-align: center;
    color: var(--white);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

/* ===== Contact Section ===== */
.contact {
    background: linear-gradient(to bottom left, #E6B800 0%, #1A2A60 40%, #1A2A60 100%);
margin-bottom: 0px;
padding-bottom: 0px;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}


.contact-info {
    background: rgba(255, 255, 255, 0.15
);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
border: 1px solid rgba(255, 255, 255, 0.15);

    color: rgb(255, 255, 255);
    padding: 3rem;
}

.contact-info h3 {
    color: rgba(255, 255, 255, 0.904);
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.contact-form {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ===== Footer ===== */
footer {
   background: radial-gradient(circle at bottom right,
    #E6B800 0%,
    #1A2A60 60%
);
color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(181, 162, 20, 0.6);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* ===== Page-Specific Styles ===== */
/* Business Registration Page */
.service-detail {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.process-step {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

/* Our Work Page */
.project-detail {
    margin-bottom: 5rem;
}

.project-header {
    margin-bottom: 2rem;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.project-testimonial {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.project-testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.project-testimonial .author {
    font-weight: bold;
}

.project-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(245, 239, 239, 0.2);
}

.whatsapp-popup {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 300px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 1000;
  padding: 20px;
}

.popup-content h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.popup-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.popup-buttons button {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.popup-buttons button:first-child {
  background: #25D366;
  color: white;
}

.popup-buttons button:last-child {
  background: #f0f0f0;
  color: #555;
}

.Our-Brands {
  text-align: center;
  padding: 40px 0;
  background: #fff;
}

.Our-Brands img {
  margin-bottom: 20px;
  max-height: 80px;
  width: auto;
  display: block;
  margin: 0 auto;
  transition: transform 3s ease;
}

.Our-Brands img:hover {
  transform: scale(1.5);
}

.Our-Brands img {
    filter: none !important;
    -webkit-filter: none !important;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 280px;
        height: calc(100vh - 80px);
        padding: 2rem;
        transition: all 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        margin: 0 0 1.5rem 0;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0.5rem 0 0 1.5rem;
        transform: none;
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }
    
    .hero {
        padding: 130px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .portfolio-filters {
        flex-direction: column;
        align-items: center;
    }
}
/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    color: white;
    z-index: 10000;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification.success {
    background-color: #4CAF50;
    border-left: 5px solid #2E7D32;
}

.notification.error {
    background-color: #F44336;
    border-left: 5px solid #C62828;
}

.notification.loading {
    background-color: #2196F3;
    border-left: 5px solid #0D47A1;
}

.loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form button loading state */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
/* Hide dropdown arrows only on small screens (mobile) */
@media (max-width: 768px) {
    .dropdown > .nav-link::after {
        display: none;   /* if your arrow is via ::after */
    }

    .dropdown > .nav-link i,
    .dropdown > .nav-link span.arrow {
        display: none;   /* if arrow is inside <i> or span */
    }
}
@keyframes textBlink {
  0% { opacity: 0; transform: translateY(20px); }
  50% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-20px); }
}

.animate-text {
  display: inline-block;
  margin-right: 8px;
  animation: textBlink 2.5s ease-in-out infinite;
}@keyframes textPulse {
  0%   { opacity: 1; transform: scale(1); }
  50%  { opacity: 0.85; transform: scale(1.03); }
  100% { opacity: 1; transform: scale(1); }
}

.animate-text {
  display: inline-block;
  animation: textPulse 3s ease-in-out infinite;
}
#typed-text {
  color: #E6B800;  /* golden */
  font-weight: bold;
}
/* Add this CSS to your stylesheet */
.hexagon-container {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  height: 400px;
  z-index: 1;
}

.hexagon {
  position: absolute;
  width: 100px;
  height: 55px;
  background-color: rgba(26, 58, 108, 0.15);
  margin: 27.5px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.hexagon:before,
.hexagon:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
}

.hexagon:before {
  bottom: 100%;
  border-bottom: 27.5px solid rgba(26, 58, 108, 0.15);
}

.hexagon:after {
  top: 100%;
  border-top: 27.5px solid rgba(26, 58, 108, 0.15);
}

/* Individual hexagon positions */
.hexagon:nth-child(1) {
  left: 0;
  top: 0;
  animation: float 6s ease-in-out infinite;
}

.hexagon:nth-child(2) {
  left: 60px;
  top: 80px;
  animation: float 7s ease-in-out infinite;
  background-color: rgba(26, 58, 108, 0.1);
}

.hexagon:nth-child(2):before {
  border-bottom-color: rgba(26, 58, 108, 0.1);
}

.hexagon:nth-child(2):after {
  border-top-color: rgba(26, 58, 108, 0.1);
}

.hexagon:nth-child(3) {
  left: 120px;
  top: 0;
  animation: float 5s ease-in-out infinite;
  background-color: rgba(26, 58, 108, 0.2);
}

.hexagon:nth-child(3):before {
  border-bottom-color: rgba(26, 58, 108, 0.2);
}

.hexagon:nth-child(3):after {
  border-top-color: rgba(26, 58, 108, 0.2);
}

.hexagon:nth-child(4) {
  left: 60px;
  top: 160px;
  animation: float 8s ease-in-out infinite;
  background-color: rgba(26, 58, 108, 0.08);
}

.hexagon:nth-child(4):before {
  border-bottom-color: rgba(26, 58, 108, 0.08);
}

.hexagon:nth-child(4):after {
  border-top-color: rgba(26, 58, 108, 0.08);
}

.hexagon:nth-child(5) {
  left: 0;
  top: 160px;
  animation: float 7.5s ease-in-out infinite;
  background-color: rgba(26, 58, 108, 0.12);
}

.hexagon:nth-child(5):before {
  border-bottom-color: rgba(26, 58, 108, 0.12);
}

.hexagon:nth-child(5):after {
  border-top-color: rgba(26, 58, 108, 0.12);
}

/* Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .hexagon-container {
    display: none;
  }
}
/* Add this CSS to your stylesheet */
.particle-network-animation {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  overflow: hidden;
  z-index: 1;
}

.particle-network-animation::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 60%);
  z-index: 2;
}

.particle {
  position: absolute;
  background-color: rgba(255, 215, 100, 0.6);
  border-radius: 50%;
  width: 3px;
  height: 3px;
  box-shadow: 0 0 8px rgba(255, 215, 100, 0.6);
  animation: particle-float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
  width: 4px;
  height: 4px;
}

.particle:nth-child(2) {
  top: 60%;
  left: 40%;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  top: 30%;
  left: 60%;
  animation-delay: 2s;
  width: 5px;
  height: 5px;
}

.particle:nth-child(4) {
  top: 70%;
  left: 30%;
  animation-delay: 3s;
}

.particle:nth-child(5) {
  top: 40%;
  left: 70%;
  animation-delay: 4s;
}

.particle:nth-child(6) {
  top: 50%;
  left: 50%;
  animation-delay: 5s;
  width: 4px;
  height: 4px;
}

.particle:nth-child(7) {
  top: 10%;
  left: 80%;
  animation-delay: 6s;
}

.particle:nth-child(8) {
  top: 80%;
  left: 20%;
  animation-delay: 7s;
  width: 5px;
  height: 5px;
}

.particle:nth-child(9) {
  top: 25%;
  left: 40%;
  animation-delay: 8s;
}

.particle:nth-child(10) {
  top: 65%;
  left: 60%;
  animation-delay: 9s;
  width: 4px;
  height: 4px;
}

/* Connections between particles */
.particle-network-animation::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: 
    radial-gradient(circle, rgba(255, 215, 100, 0.2) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 215, 100, 0.15) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 215, 100, 0.1) 1px, transparent 1px);
  background-size: 150px 150px, 250px 250px, 350px 350px;
  background-position: 0 0, 50px 50px, 100px 100px;
  animation: network-pulse 8s infinite alternate;
  z-index: 1;
}

@keyframes particle-float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-15px) translateX(10px);
  }
  50% {
    transform: translateY(10px) translateX(-15px);
  }
  75% {
    transform: translateY(-10px) translateX(15px);
  }
}

@keyframes network-pulse {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .particle-network-animation {
    display: none;
  }
}
/* Add this CSS to your stylesheet */
.particle-network-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

#particleCanvas {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .particle-network-container {
    display: none;
  }
}
.counter-section {
  padding: 80px 0;
  background: radial-gradient(circle at bottom right,
              #e6b8007e 0%,
              #1a2a607b 60%),
              url(https://i.pinimg.com/1200x/16/03/c0/1603c086f2c98bc4fc7fde45d8d9afb2.jpg);
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}


.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.counter-item {
  padding: 20px;
}

.counter {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.counter-label {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .counter {
    font-size: 2.5rem;
  }
  
  .counter-label {
    font-size: 1rem;
  }
}
.service-card {
  border-radius: 12px; /* or whatever value you’re using */
  overflow: hidden;    /* makes sure child elements respect rounding */
}

.service-icon img {
  border-radius: 12px; /* match the card corners */
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.service-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.mobile-toggle {
    display: none;       /* hidden by default */
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--navy);
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;   /* ✅ pushes it to right */
}

/* Show hamburger on mobile */
@media screen and (max-width: 768px) {
    .mobile-toggle {
        display: block;  /* ✅ make it appear */
    }
}






