/* Custom Navigation Styling */

/* Global Font Setup */
body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  background-color: #fff;
}

/* Headings & Navigation */
h1, h2, h3, h4, h5, h6,
.nav-link-custom {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.nav-link-custom {
  color: #333 !important;
  font-weight: 500;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 6px;
}

.nav-link-custom:hover {
  color: #0d6efd !important;
  background-color: rgba(13,110,253,0.08); /* soft blue highlight */
}

.nav-link-custom.active {
  color: #0d6efd !important;
  font-weight: 600;
  border-bottom: 2px solid #0d6efd;
}

/* Carousel images */
.carousel-item img {
  height: 500px;
  object-fit: cover;
}

/* Section Animation */
.animate-branches {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1.2s ease forwards;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Section Animation */
.animate-branches {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1.2s ease forwards;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Branch Circle */
.branch-circle {
  width: 260px;   /* larger circle */
  height: 260px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effect */
.branch-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 0 35px rgba(0,0,0,0.15);
}

/* Light Gradient Backgrounds */
.bg-gradient-blue {
  background: linear-gradient(135deg, rgba(173,216,230,0.4), rgba(255,255,255,0.9)); /* light sky blue */
}

.bg-gradient-green {
  background: linear-gradient(135deg, rgba(144,238,144,0.4), rgba(255,255,255,0.9)); /* light pastel green */
}

/* Branch Icon */
.branch-icon {
  width: 200px;   /* bigger image inside */
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-icon:hover {
  transform: rotate(5deg) scale(1.12);
  box-shadow: 0 0 25px rgba(13,110,253,0.3);
}
/* Quote Section Styling */
.quote {
  position: relative;
  overflow: hidden;
}

.quote-bg {
  background: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)),
              url('quote-bg-light.jpg') center/cover no-repeat;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.quote-content {
  position: relative;
  z-index: 1;
}

/* Logo hover effect */
.quote-logo {
  width: 90px;
  height: 90px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.quote-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(173, 216, 230, 0.7);
}

/* Reload Animation */
.animate-quote {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideIn 1.2s ease forwards;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Product Card Styling */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.product-card .card-img-top {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.product-card .card-body {
  padding: 1.5rem;
}

.product-card .btn {
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.product-card .btn:hover {
  background-color: #0d6efd;
  color: #fff;
  transform: scale(1.05);
}

.about-video {
  max-height: 400px;
  object-fit: cover;
}

/* Background Styling */
.about {
  position: relative;
  overflow: hidden;
}

.about-bg {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url('about-bg.jpg') center/cover no-repeat;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.about-content {
  position: relative;
  z-index: 1;
}

/* Transition Animations */
.animate-about {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1.2s ease forwards;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Background Styling */
.about {
  position: relative;
  overflow: hidden;
}

.about-bg {
  background: linear-gradient(rgba(13,110,253,0.6), rgba(255,255,255,0.7)),
              url('about-bg.jpg') center/cover no-repeat;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.about-content {
  position: relative;
  z-index: 1;
}

/* Text Highlight */
.highlight {
  color: #ffd700; /* gold accent */
  font-weight: 600;
}

/* Transition Animations */
.animate-about {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1.2s ease forwards;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Animation */
.animate-about {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1.2s ease forwards;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Animation */
.animate-about {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1.2s ease forwards;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Image Styling */
.about-img-wrapper {
  display: inline-block;
  border: 6px solid #f8f9fa; /* subtle border to match white theme */
  border-radius: 12px;
  padding: 8px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-img-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(13,110,253,0.25); /* soft blue glow */
}

.about-img {
  border-radius: 10px;
}

/* Text Highlight */
.highlight {
  color: #0d6efd; /* Bootstrap primary blue */
  font-weight: 600;
}

/* Section Spacing */
.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Text Highlight */
.highlight {
  color: #0d6efd; /* Bootstrap primary blue */
  font-weight: 600;
}


/* Section Animation */
.animate-work {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1.2s ease forwards;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Animation */
.animate-work {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1.2s ease forwards;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Round Workflow Cards */
.workflow-card {
  background: #f8f9fa;
  width: 280px;
  height: 280px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.workflow-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(13,110,253,0.25);
}

/* Circular Icons */
.workflow-icon {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.workflow-icon:hover {
  transform: rotate(5deg) scale(1.1);
}

/* Round Workflow Cards */
.workflow-card {
  width: 280px;
  height: 280px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(13,110,253,0.15), rgba(255,255,255,0.9));
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  position: relative;
  overflow: hidden;
}

.workflow-card:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(13,110,253,0.3);
  background: linear-gradient(135deg, rgba(13,110,253,0.25), rgba(255,255,255,1));
}

/* Circular Icons */
.workflow-icon {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.workflow-icon:hover {
  transform: rotate(8deg) scale(1.15);
  box-shadow: 0 0 20px rgba(13,110,253,0.4);
}

/* Optional Text Styling inside Cards */
.workflow-card h5 {
  margin-top: 10px;
  font-weight: 600;
  color: #0d6efd;
}

.workflow-card p {
  font-size: 0.85rem;
  color: #555;
  margin-top: 5px;
  padding: 0 15px;
}

/* Workflow Cards */
.workflow-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 2rem 1rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%; /* ensures equal height in grid */
}

.workflow-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(13,110,253,0.2);
}

/* Workflow Icons */
.workflow-icon {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.workflow-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .workflow-card {
    padding: 1.5rem;
    border-radius: 15px;
  }
  .workflow-icon {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 576px) {
  .workflow-card {
    padding: 1rem;
    border-radius: 12px;
  }
  .workflow-icon {
    width: 60px;
    height: 60px;
  }
}
/* Sponsorship Section */
.sponsorship {
  text-align: center;
}

.sponsor-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.sponsor-track {
  display: flex;
  gap: 40px;
  width: max-content; /* ensures track fits all items */
  animation: scrollSponsors 25s linear infinite;
}

.sponsor-item {
  flex: 0 0 auto;
  text-align: center;
}

.sponsor-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sponsor-item img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(13, 110, 253, 0.2);
}

.sponsor-item p {
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
}

/* Keyframes for continuous repeat */
@keyframes scrollSponsors {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* move half the track, then loop */
}
/* Gallery Animation */
.animate-gallery {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1.2s ease forwards;
}

/* Gallery Items */
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(13,110,253,0.15);
}

.gallery-item:hover img {
  transform: scale(1.1);
}
/* Footer Styling */
.footer {
  background: #111;
  color: #eee;
}

/* Footer Logo Styling */
.footer-logo {
  width: 100px;        /* adjust size */
  height: 100px;       /* make it square for perfect circle */
  object-fit: cover;   /* crop nicely inside circle */
  border-radius: 50%;  /* makes it round */
  box-shadow: 0 0 12px rgba(0,0,0,0.2); /* subtle glow */
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #0d6efd;
}

/* Social Icons */
.social-icon {
  font-size: 1.4rem;
  margin: 0 8px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

/* Individual Colors */
.social-icon.whatsapp { color: #25D366; }
.social-icon.facebook { color: #1877f2; }
.social-icon.tiktok { color: #000; }
.social-icon.instagram { color: #e1306c; }
.social-icon.linkedin { color: #0a66c2; }

.social-icon.whatsapp:hover { color: #1ebe5d; }
.social-icon.facebook:hover { color: #0a58ca; }
.social-icon.tiktok:hover { color: #444; }
.social-icon.instagram:hover { color: #c13584; }
.social-icon.linkedin:hover { color: #004182; }

.footer-link {
  color: #ccc;
  text-decoration: none;
}

.footer-link:hover {
  color: #0d6efd;
}

.small.text-muted {
  color: #aaa !important; /* ensure visibility */
  font-size: 0.9rem;
}

/* Footer Credit Styling */
.footer-credit {
  color: #aaa;
  font-size: 0.85rem;
  margin-top: 8px;
}

.jvdev {
  font-family: 'Poppins', sans-serif; /* modern font */
  font-weight: 600;
  color: #0d6efd; /* primary blue */
  letter-spacing: 1px;
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

.jvdev:hover {
  color: #ffd700; /* gold accent on hover */
  text-shadow: 0 0 10px rgba(255,215,0,0.6);
  transform: scale(1.05);
  cursor: pointer;
}



/* Footer Credit Styling */
.footer-credit {
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* JV Developers Mark */
.jvdev-mark {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #0d6efd; /* primary blue */
  letter-spacing: 1px;
  padding: 4px 10px;
  border: 2px solid #0d6efd;
  border-radius: 20px; /* pill shape badge */
  background: rgba(13,110,253,0.1);
  transition: all 0.3s ease;
}

/* Highlight Developers word */
.dev-highlight {
  color: #ffd700; /* gold accent */
}

/* Hover Effect */
.jvdev-mark:hover {
  background: rgba(13,110,253,0.2);
  color: #ffd700;
  border-color: #ffd700;
  text-shadow: 0 0 10px rgba(255,215,0,0.6);
  transform: scale(1.05);
  cursor: pointer;
}

/* Footer Credit Styling */
.footer-credit {
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* JVDevelopers Logo */
.jvdev-logo img.jv-logo {
  width: 100px;
  height: auto;
  border-radius: 100%; /* makes it round */
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.jvdev-logo img.jv-logo:hover {
  transform: scale(1.05);
}