 body {
      background-color: #0a0a0a;
      color: #eaeaea;
      font-family: 'Poppins', sans-serif;
    }
    .navbar {
      background-color: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(8px);
      
    }
    .hero {
      min-height: 100vh;
      background: linear-gradient(135deg, #0a0a0a, #111a2a);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
      color: #00c8ff;
    }
    .hero p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 20px auto;
      color: #cfcfcf;
    }
    .btn-custom {
      background-color: #00c8ff;
      color: #000;
      font-weight: 600;
      border: none;
      padding: 10px 25px;
      border-radius: 25px;
      transition: 0.3s;
    }
    .btn-custom:hover {
      background-color: #00a1cc;
      color: #fff;
    }
    section {
      padding: 80px 0;
      margin-bottom: 50px;
    }
    h2.section-title {
      text-align: center;
      color: #00c8ff;
      margin-bottom: 50px;
      font-weight: 600;
    }
    .service-card {
      background-color: #111a2a;
      border: none;
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      transition: 0.3s;
    }
    .service-card:hover {
      background-color: #16233a;
      transform: translateY(-5px);
    }
    .footer {
      background-color: #0d0d0d;
      padding: 30px 0;
      text-align: center;
      color: #888;
    }
   .whatsapp-text {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
 .whatsapp-btn:hover .whatsapp-text {
  opacity: 1;
  visibility: visible;
}


.circle-img {
  border-radius: 50%;
  object-fit: cover;
  animation: glow 1s infinite alternate;
 
}

@keyframes glow {
  0% {
    box-shadow: 0 0 20px rgba(0, 161, 204, 0.5); /* light glow */
  }
  50% {
    box-shadow: 0 0 50px rgba(0, 161, 204, 1); /* brighter glow */
  }
  100% {
    box-shadow: 0 0 20px rgba(0, 161, 204, 0.5); /* back to light glow */
  }

}#dotsCanvas {

  pointer-events: none; /* allows clicking through the canvas */
  z-index: 0;
}

.navbar .container {
  z-index: 1; /* content above canvas */
  margin: 1.5em;
}
  
/* CSS */
/* CSS */
/* CSS */
.floating-footer {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  padding: 15px 35px;
  border-radius: 40px;
  z-index: 1000;
  box-shadow: 0 6px 25px rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
}

.floating-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 35px;
}

.floating-footer a {
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  overflow: hidden;
}

/* Animated dots along the link */
.floating-footer a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  width: 6px;
  height: 6px;
  background: #00c8ff;
  border-radius: 50%;
  transform: translateY(-50%);
  animation: moveDot 2s linear infinite;
}

.floating-footer a:hover::before {
  background: #fff;
}

@keyframes moveDot {
  0% { left: -10px; opacity: 0; }
  30% { opacity: 1; }
  50% { left: 100%; opacity: 1; }
  70% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.navbar img.circle-img {
  width: 60px;  /* smaller on mobile */
  height: 60px;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  font-size: 1.2rem;
}



@media (max-width: 480px) { /* phone */
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 0.9rem;
    max-width: 95%;
  }
  .btn-custom {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  #contact .col-lg-6 {
  width: 100%;
  padding: 0 15px;
}

    .floating-footer {
  padding: 10px 20px;
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%); /* centers the footer */
  z-index: 1000;

  display: flex;
  justify-content: center;
  align-items: center;

  width: auto; /* instead of 100% */
  background: black; /* optional */
  border-radius: 10px; /* optional */
}

  .floating-footer.show {
  bottom: 0; /* slide up and show */
}
  .floating-footer ul {
    gap: 15px;
  }
  .floating-footer a {
    font-size: 0.85rem;
  }
  .whatsapp-btn-container {
    font-size: 50px;
  }
  .whatsapp-text {
    font-size: 0.8rem;
  }
}

    .floating-footer nav ul {
  display: flex;
  gap: 20px;    /* optional spacing */
  list-style: none;
  padding: 0;
  margin: 0;
}
html, body {
      height: 100%;
      margin: 0;
    }
    

    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      background-color: #0a0a0a;
      color: #eaeaea;
      font-family: 'Poppins', sans-serif;
      margin: 0;
    }

    .navbar {
      background-color: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(8px);
      padding-top: 0.3rem;
      padding-bottom: 0.3rem;

    }

    .navbar .container {
  z-index: 1; /* content above canvas */
  margin: 1.5em;
 
}

    .navbar .circle-img {
  width: 50px;  /* smaller logo */
  height: 50px;
}

    section {
      padding: 0px;
      flex: 1;
      min-height: 60vh;
    }

    .footer {
      background-color: #0d0d0d;
      padding: 0px 0;
      text-align: center;
      color: #bbb;
    }

    .section-title {
      color: #00c8ff;
      text-align: center;
      margin-bottom: 100px;
    }

    /* Pricing card styles */
    .pricing-card {
      background-color: #111a2a;
      border: none;
      border-radius: 15px;
      padding: 30px;
      color: #eaeaea;
      transition: 0.3s ease;
    }

    .pricing-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 200, 255, 0.2);
    }

    .pricing-card h3 {
      color: #00c8ff;
      font-weight: 600;
    }

    .price {
      font-size: 2rem;
      font-weight: bold;
      margin: 20px 0;
      color: #fff;
      margin-bottom: 100px;
    }

    .btn-custom {
      background-color: #00c8ff;
      color: #000;
      font-weight: 600;
      border: none;
      border-radius: 25px;
      padding: 10px 25px;
      transition: 0.3s;
    }

    .btn-custom:hover {
      background-color: #00a1cc;
      color: #fff;
    }

  .circle-img {
  border-radius: 50%;
  object-fit: cover;
  animation: glow 1s infinite alternate;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 20px rgba(0, 161, 204, 0.5); /* light glow */
  }
  50% {
    box-shadow: 0 0 50px rgba(0, 161, 204, 1); /* brighter glow */
  }
  100% {
    box-shadow: 0 0 20px rgba(0, 161, 204, 0.5); /* back to light glow */
  }
}
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 250px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.9s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
  cursor: pointer;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-inner.flipped {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: opacity 0.6s ease-in-out;
}

/* Front side */
.flip-card-front {
  background: linear-gradient(135deg, #00c8ff, #007bff);
  opacity: 1;
}

/* Back side */
.flip-card-back {
  background-color: #1a1a1a;
  transform: rotateY(180deg);
  border: 1px solid #00c8ff;
  opacity: 0;
}

/* Fade effect during flip */
.flip-card-inner.flipped .flip-card-back,
.flip-card:hover .flip-card-back {
  opacity: 1;
}

.flip-card-inner.flipped .flip-card-front,
.flip-card:hover .flip-card-front {
  opacity: 0;
}

/* Optional zoom on hover */
.flip-card:hover {
  transform: scale(1.03);
  transition: transform 0.3s ease-in-out;
}

.flip-card-back p {
  margin: 0;
  line-height: 1.2; /* optional */
}


.box-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 50px; /* ⬅️ Increase this for more space from the top */
  gap: 20px;
}

/* 3D Box Heading */
.box {
  width: 180px;
  height: 80px;
  background: linear-gradient(180deg, #1c1c1c, #0a0a0a);
  color: #fff;
  font-family: 'Georgia', serif;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 1px;
  border-radius: 15px;
  box-shadow:
    inset 2px 2px 6px rgba(255,255,255,0.08),
    inset -2px -2px 6px rgba(0,0,0,0.8),
    0 6px 14px rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  position: relative;
  transform: rotateX(-30deg);
}

/* Top face of the 3D box */
.box::before {
  content: '';
  position: absolute;
  top: -24px;
  left: -2px;
  width: 184px;
  height: 40px;
  background: linear-gradient(145deg, #333, #555);
  transform: rotateX(60deg);
  transform-origin: bottom;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

/* Responsive flip cards */
.flip-card {
  width: 100%;
  max-width: 250px; /* smaller width */
  height: 200px;
  perspective: 1000px;
}

.flip-card-front, .flip-card-back {
  font-size: 0.9rem; /* smaller text */
  padding: 10px;     /* reduce inner spacing */
}
.floating-footer {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  padding: 1rem 2vw;           /* padding scales with viewport width */
  border-radius: 35px;
  z-index: 1000;
  box-shadow: 0 6px 25px rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  max-width: 95vw;              /* never exceed screen width */
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.floating-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2vw;                     /* gap scales with screen width */
  flex-wrap: nowrap;             /* prevent wrapping */
  justify-content: center;
  flex-shrink: 1;                /* allows shrinking on small screens */
}

.floating-footer a {
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: clamp(0.75rem, 1.5vw, 1rem); /* scales between min and max */
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;           /* prevent text from breaking */
  flex-shrink: 1;                /* allows links to shrink */
}

/* Animated dots */
.floating-footer a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -6px;
  width: 4px;
  height: 4px;
  background: #00c8ff;
  border-radius: 50%;
  transform: translateY(-50%);
  animation: moveDot 2s linear infinite;
}

.floating-footer a:hover::before {
  background: #fff;
}

@keyframes moveDot {
  0% { left: -6px; opacity: 0; }
  30% { opacity: 1; }
  50% { left: 100%; opacity: 1; }
  70% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #0a0a0a;
    color: #eaeaea;
    font-family: 'Poppins', sans-serif;
  }

  .navbar {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    
  }

  .navbar .container {
  z-index: 1; /* content above canvas */
  margin: 1.5em;
}

 

  section {
    padding: 80px 0;
    flex: 1; /* this makes section take remaining space */
  }

  .footer {
    background-color: #0d0d0d;
    padding: 30px 0;
    text-align: center;
    color: #888;
  }

  .container {
  flex: 1; /* pushes footer to bottom if content is short */
}


section {
  padding: 180px 0 80px; /* top padding accounts for navbar height */
  flex: 1;
}

  .circle-img {
  border-radius: 50%;
  object-fit: cover;
  animation: glow 1s infinite alternate;
}

.img-fluid{
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 161, 204, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex ;


}

@keyframes glow {
  0% {
    box-shadow: 0 0 20px rgba(0, 161, 204, 0.5); /* light glow */
  }
  50% {
    box-shadow: 0 0 50px rgba(0, 161, 204, 1); /* brighter glow */
  }
  100% {
    box-shadow: 0 0 20px rgba(0, 161, 204, 0.5); /* back to light glow */
  }
}

.box-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: -130px;
  
}

/* 3D Box Heading */
.box {
  width: 180px;
  height: 80px;
  background: linear-gradient(180deg, #1c1c1c, #0a0a0a);
  color: #fff;
  font-family: 'Georgia', serif;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 1px;
  border-radius: 15px;
  box-shadow:
    inset 2px 2px 6px rgba(255,255,255,0.08),
    inset -2px -2px 6px rgba(0,0,0,0.8),
    0 6px 14px rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  position: relative;
  transform: rotateX(-30deg);
  padding: auto;
}

/* Top face of the 3D box */
.box::before {
  content: '';
  position: absolute;
  top: -24px;
  left: -2px;
  width: 184px;
  height: 40px;
  background: linear-gradient(145deg, #333, #555);
  transform: rotateX(60deg);
  transform-origin: bottom;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  
}

/* CSS */
.floating-footer {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  padding: 1rem 2vw;           /* padding scales with viewport width */
  border-radius: 35px;
  z-index: 1000;
  box-shadow: 0 6px 25px rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  max-width: 95vw;              /* never exceed screen width */
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.floating-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2vw;                     /* gap scales with screen width */
  flex-wrap: nowrap;             /* prevent wrapping */
  justify-content: center;
  flex-shrink: 1;                /* allows shrinking on small screens */
}

.floating-footer a {
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: clamp(0.75rem, 1.5vw, 1rem); /* scales between min and max */
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;           /* prevent text from breaking */
  flex-shrink: 1;                /* allows links to shrink */
}

/* Animated dots */
.floating-footer a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -6px;
  width: 4px;
  height: 4px;
  background: #00c8ff;
  border-radius: 50%;
  transform: translateY(-50%);
  animation: moveDot 2s linear infinite;
}

.floating-footer a:hover::before {
  background: #fff;
}

@keyframes moveDot {
  0% { left: -6px; opacity: 0; }
  30% { opacity: 1; }
  50% { left: 100%; opacity: 1; }
  70% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
section {
  padding: 80px 0;
}

/* Extra space above the contact section if needed */
#contact {
  margin-top: 150px; /* increase this number if you want it further down */
}

.whatsapp-btn-container {
  position: fixed;
  bottom: 90px;
  right: 16px;
  z-index: 2000;
}

/* Button styling */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #25D366;              /* WhatsApp green */
  border-radius: 999px;              /* pill shape */
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

/* Icon */
.whatsapp-btn i {
  font-size: 24px;
}

/* Hover / focus state */
.whatsapp-btn:hover,
.whatsapp-btn:focus-visible {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

/* Optional: subtle pulsing animation */
.whatsapp-btn-container {
  animation: float-in 0.4s ease-out 0.3s both;
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .whatsapp-btn {
    padding: 10px 14px;
    font-size: 14px;
  }

  .whatsapp-btn i {
    font-size: 20px;
  }

  .whatsapp-btn-container {
    bottom: 130px;
    right: 12px;
  }
}

/* === FIX LAYOUT / CONTACT SECTION – ADD THIS AT THE END === */

/* Don't make <html> a flex container */
html {
  height: 100%;
  margin: 0;
}

/* Keep flex only on body */
body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* Let .container behave like normal (Bootstrap-style) */
.container {
  flex: 0 0 auto;
}

/* Contact section spacing and responsiveness */
#contact {
  padding: 80px 0 160px;   /* extra bottom padding so form is not under floating footer/WhatsApp */
  margin-top: 80px;        /* not too huge */
}

/* Keep the form nicely centered */
#contact .row {
  margin: 0;
}

#contact .col-lg-6 {
  max-width: 600px;
  margin: 0 auto;
}

/* Make form fields full width */
#contact input,
#contact textarea,
#contact select,
#contact button {
  width: 100%;
  box-sizing: border-box;
}

/* Small phones (like yours) */
@media (max-width: 480px) {
  #contact {
    padding-top: 40px;
    padding-bottom: 190px; /* a bit more clearance at bottom for floating footer + WhatsApp button */
    margin-top: 40px;
  }
}


section#projects {
  padding-top: 150px !important;
  margin-top: 50px !important;
}

   




