/* General */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #333;
  line-height: 1.6;
}


/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: radial-gradient(circle at center, #d9d9d9, #ffffff); /* Gradient from lighter to darker */
  color: rgb(255, 255, 255);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.work-with-us {
  background: #ffffff;
  color: #000000 !important;
  position: relative;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #003399;
  box-shadow: 4px 4px 0 #A2FF00;
  transform: translate(-4px, -4px);
}

.work-with-us:hover {
  transform: translate(0, 0);
  box-shadow: 0 0 0 #A2FF00;
  background: #003399;
  color: #ffffff !important;
}

.work-with-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #A2FF00, #003399, #A2FF00);
  background-size: 200% auto;
  z-index: -1;
  animation: gradient 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 4px;
}

.work-with-us:hover::before {
  opacity: 0.3;
}

.work-with-us::after {
  content: '→';
  margin-left: 0;
  opacity: 0;
  transition: all 0.3s ease;
  position: absolute;
  right: 10px;
  transform: translateX(-5px);
}

.work-with-us:hover::after {
  opacity: 1;
  margin-left: 8px;
  transform: translateX(0);
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Add this to make the button stand out in the nav */
.nav-links li:last-child {
  margin-left: 10px;
}

/* Logo */
.logo {
  font-size: 20px;
  font-weight: bold;
  color: white;
}

/* Nav links (desktop) */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-weight: 500;
}

/* Burger icon */
.burger {
  font-size: 28px;
  cursor: pointer;
  display: none;
  color: rgb(0, 0, 0);
}

/* Mobile Nav */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #ffffff;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-radius: 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .burger {
    display: block;
  }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, rgba(0, 51, 153, 0.7), rgba(74, 144, 226, 0.7)), 
              url("bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
}

section h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #151515;
}


.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero h2 span {
  color: #A2FF00;
}

.hero p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-brand {
  background: #fff;
  color: #003399;
  font-weight: bold;
}

.btn-brand:hover {
  background: #A2FF00;
  color: #003399;
}

.btn-smb {
  background: #A2FF00;
  color: #003399;
  font-weight: bold;
}

.btn-smb:hover {
  background: #88cc00;
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: -35px; /* Moves the whole grid up */
  padding: 2rem 5% 4rem 5%;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0px 10px 11px -4px rgba(0,0,0,0.75);
-webkit-box-shadow: 0px 10px 11px -4px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 10px 11px -4px rgba(0,0,0,0.75);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #003399;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  border-top: 4px solid #A2FF00;
}

.service-card h4 {
  color: #003399;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: #003399;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
}
footer a {
  color: #A2FF00;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

/* Floating Chat Button */
.chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-decoration: none;
  z-index: 1000;
}

.chat-icon {
  width: 60px;
  height: 60px;
  background: #0070f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  position: relative;
  animation: bounce 2s infinite, pulse 3s infinite;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.chat-icon:hover {
  transform: scale(1.1);
}

.online-dot {
  position: absolute;
  bottom: 10px;
  right: 12px;
  width: 14px;
  height: 14px;
  background: #00c853;
  border-radius: 50%;
  border: 2px solid white;
}

@keyframes bounce {
  0%,20%,50%,80%,100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-3px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 12px rgba(0,112,243,0.6), 0 0 24px rgba(0,200,83,0.5); }
  50% { box-shadow: 0 0 20px rgba(0,112,243,0.9), 0 0 35px rgba(0,200,83,0.8); }
  100% { box-shadow: 0 0 12px rgba(0,112,243,0.6), 0 0 24px rgba(0,200,83,0.5); }
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup.active {
  display: flex;
  opacity: 1;
}

.popup-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  margin: auto;
  text-align: center;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-top: 4px solid #003399;
}

.popup.active .popup-content {
  transform: translateY(0);
}

.popup-content p {
  margin-bottom: 1.5rem;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
}

.popup-close {
  background: #003399;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: #A2FF00;
  color: #003399;
}

/* About Page */
.about {
  padding: 3rem 10%;
  text-align: center;
}

.about h2 {
  font-size: 2.2rem;
  color: #003399;
  margin-bottom: 1.5rem;
}

.about p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #444;
  line-height: 1.8;
}

/* Picture templates */
.about-pictures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 10%;
  align-items: start;   /* <--- this is the fix */
}


.pic-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.pic-card:hover {
  transform: translateY(-5px);
}

.pic-card img {
  width: 100%;
  height: auto;
  display: block;
}


.pic-card p {
  padding: 1rem;
  font-size: 1rem;
  color: #333;
}

/* Contact info block */
.contact-info {
  background: #f7f7f7;
  text-align: center;
  padding: 2rem 10%;
  margin-top: 2rem;
  border-top: 4px solid #003399;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #003399;
}

.contact-info a {
  color: #003399;
  font-weight: bold;
  text-decoration: none;
}
.contact-info a:hover {
  color: #A2FF00;
}
.contact-info p {
  font-size: 1rem;
  color: #555;
  margin: 0.5rem 0;
}

/* Work With Us Popup fixes */
#workWithUsPopup .popup-content {
  max-width: 480px;
  text-align: center;
}

#workWithUsPopup h3 {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
  color: #003399;
}

#workWithUsPopup p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #444;
}

/* CTA buttons inside Work With Us popup */
#workWithUsPopup .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

#workWithUsPopup .cta-buttons .btn {
  padding: 0.8rem 1.6rem;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Brand button */
#workWithUsPopup .btn-brand {
  background: #fff;
  color: #003399;
  border: 2px solid #003399;
}
#workWithUsPopup .btn-brand:hover {
  background: #003399;
  color: #fff;
}

/* SMB button */
#workWithUsPopup .btn-smb {
  background: #A2FF00;
  color: #003399;
  border: 2px solid #003399;
}
#workWithUsPopup .btn-smb:hover {
  background: #88cc00;
}

/* Not now button (plain, smaller) */
#workWithUsPopup .popup-close {
  background: none;
  color: #666;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: color 0.2s ease;
}
#workWithUsPopup .popup-close:hover {
  color: #000;
}

