
 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

.navbar-brand img { height: 26px;margin-left:-40px }
.nav-link { color: #cbd5e1 !important; transition: color 0.3s; }
.nav-link:hover, .nav-link.active { color: #60a5fa !important; }
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1120 0%, #1a237e 50%, #283593 100%);
  perspective: 1000px;
}
.hero-content {
  position: relative;
  z-index: 2;
  transform: translateZ(40px);
  will-change: transform;
  transition: transform 0.3s ease-out;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
#heroCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #e0f2fe;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: #bfdbfe;
  margin-top: 10px;
}
.hero-btn {
  background: #3b82f6;
  border: none;
  transition: 0.3s;
}
.hero-btn:hover {
  background: #60a5fa;
  transform: translateY(-3px);
}

/* Home Section */
#home-container {
  background: linear-gradient(160deg, rgba(26,35,126,0.9), rgba(40,53,147,0.9));
  padding: 80px 0;
}
#home-container h2 {
  color: #e0f2fe;
  font-weight: 700;
}
.feature-box {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 30px 20px;
  margin: 15px;
  transition: all 0.3s ease;
}
.feature-box:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-8px);
}
.feature-box i {
  color: #60a5fa;
  margin-bottom: 15px;
}

/* Tabs */
.core-tab-nav {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  gap: 60px;
}
.core-tab-nav .nav-link {
  position: relative;
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  font-weight: 500;
  padding-bottom: 8px;
}
.core-tab-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0%;
  height: 2px;
  background-color: rgba(255,255,255,0.5);
  transition: width 0.3s, background-color 0.3s;
}
.core-tab-nav .nav-link:hover::after {
  width: 100%;
  background-color: rgba(255,255,255,0.5);
}
.core-tab-nav .nav-link.active::after {
  width: 100%;
  background-color: #fff;
}
.core-img {
  max-width: 70%;
  border-radius: 12px;
  margin-top: 30px;
}

/* WhatsApp Button */
#whatsapp-button {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
#whatsapp-button:hover { transform: scale(1.1); }

h3.core-subtitle {
    font-size: 3.1rem;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-brand .site-logo {
  height: 16px;
  margin-left: 0;
  }
}
/* General background & text */
body {
    
  background-color: #0d0f1a;
  color: #e0e0e0;
  font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
  background: rgba(15, 20, 40, 0.8);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10, 10, 25, 0.95);
}
.nav-link {
  color: #e0e0e0 !important;
  transition: color 0.3s;
}
.nav-link:hover {
  color: #00f5d4 !important;
}

/* Hero section */
.hero-section {
  background: linear-gradient(135deg, #182848 0%, #4b6cb7 100%);
  color: #ffffff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
}
.hero-subtitle {
  color: #b0bec5;
}
.hero-btn {
  background: linear-gradient(90deg, #00f5d4, #00bcd4);
  border: none;
  color: #0d0f1a;
  font-weight: 600;
  transition: 0.3s;
}
.hero-btn:hover {
  background: linear-gradient(90deg, #00bcd4, #00f5d4);
  box-shadow: 0 0 15px #00f5d4;
}

/* Home cards */
#home-container .col-md-3 {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#home-container .col-md-3:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0, 245, 212, 0.3);
}
#home-container i {
  font-size: 2rem;
  color: #00f5d4;
  margin-bottom: 10px;
}

/* Tabs */
.core-tab-nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 50px;
}
.core-tab-nav .nav-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  font-weight: 500;
  padding-bottom: 8px;
  position: relative;
  transition: all 0.3s ease;
}
.core-tab-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #00f5d4;
  transition: width 0.3s ease;
}
.core-tab-nav .nav-link:hover {
  color: #b0bec5;
}
.core-tab-nav .nav-link:hover::after {
  width: 100%;
  background-color: #b0bec5;
}
.core-tab-nav .nav-link.active {
  color: #ffffff;
}
.core-tab-nav .nav-link.active::after {
  width: 100%;
  background-color: #ffffff;
}

/* Images in tabs */
.core-img {
  margin-top: 30px;
  border-radius: 20px;
  max-width: 80%;
  box-shadow: 0 0 40px rgba(0, 245, 212, 0.15);
}

/* Footer */
footer {
  background: rgba(15, 15, 30, 0.9);
  color: #9ca3af;
}
footer p {
  margin: 0;
  color: #b0bec5;
}

/* WhatsApp button */
#whatsapp-button {
  background: linear-gradient(135deg, #00f5d4, #00bcd4);
  box-shadow: 0 0 10px rgba(0, 245, 212, 0.5);
  color: #0d0f1a;
  border-radius: 50%;
  position: fixed;
  bottom: 25px;
  left: 25px;
  padding: 15px;
  font-size: 1.8rem;
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
}
#whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(0, 245, 212, 0.6);
}

/* ===== FAQ Section ===== */
.accordion-button {
  color: #e0f2fe;
  font-weight: 500;
  font-size: 1.1rem;
  box-shadow: none;
  transition: all 0.3s ease;
}
.accordion-button:not(.collapsed) {
  color: #00f5d4;
  background: transparent;
}
.accordion-button::after {
  filter: invert(1);
}
.accordion-button:hover {
  color: #00bcd4;
}

/* ===== Pricing Cards ===== */
.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 245, 212, 0.05);
  transition: all 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0, 245, 212, 0.15);
}
.featured {
  background: linear-gradient(145deg, #00bcd4, #00f5d4);
  color: #0d0f1a;
}
.featured .text-secondary {
  color: rgba(10,10,20,0.7) !important;
}
.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #0d0f1a;
  color: #00f5d4;
  padding: 4px 10px;
  font-size: 0.8rem;
  border-radius: 12px;
}
.btn-glow {
  background: linear-gradient(90deg, #00f5d4, #00bcd4);
  color: #0d0f1a;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.btn-glow:hover {
  background: linear-gradient(90deg, #00bcd4, #00f5d4);
  box-shadow: 0 0 15px rgba(0,245,212,0.4);
}
.text-accent {
  color: #00f5d4;
}


/* Services Section */
.services-section {
  padding: 90px 0;
}

.services-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  background: linear-gradient(90deg, #38bdf8, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Service Card */
.service-card {
  border-radius: 18px;
  padding: 40px 20px;
  color: #fff;
  background: linear-gradient(145deg, rgba(59,130,246,0.85), rgba(99,102,241,0.8));
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  text-align: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(120deg, #38bdf8, #a78bfa, #f472b6, #38bdf8);
  background-size: 300% 300%;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderGlow 4s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

/* Highlight active card */
.service-card.active {
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.8);
  transform: translateY(-5px) scale(1.03);
}

@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.service-card i {
  font-size: 48px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.service-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #e2e8f0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-card:hover i {
  transform: scale(1.1);
}

/* Hidden detailed content */
.service-details {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  margin-top: 15px;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Color Variants */
.blue { background: linear-gradient(145deg, #3b82f6, #2563eb); }
.pink { background: linear-gradient(145deg, #ec4899, #db2777); }
.green { background: linear-gradient(145deg, #22c55e, #15803d); }
.orange { background: linear-gradient(145deg, #f97316, #ea580c); }
.purple { background: linear-gradient(145deg, #8b5cf6, #7c3aed); }
.teal { background: linear-gradient(145deg, #14b8a6, #0d9488); }
.red { background: linear-gradient(145deg, #ef4444, #b91c1c); }


/* === CONTACT PAGE THEME === */
/* Form container */
#contactussection{
  margin-top: 120px;
  position: relative;
  z-index: 1;
}

form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 183, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

form:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(0, 183, 255, 0.35);
}

.form-label {
  font-weight: 500;
  color: #cfe8ff;
}

.form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid black;
  border-radius: 10px;
  color: #fff;
  padding: 12px;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 12px rgba(0, 183, 255, 0.5);
  outline: none;
}

/* Button styling */
.btn-primary {
  background: linear-gradient(90deg, #00b4d8, #0077b6);
  border: none;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #0096c7, #023e8a);
  box-shadow: 0 0 15px rgba(0, 183, 255, 0.5);
}

/* Page heading */
.contactus-site-title {
  font-weight: 700;
  background: linear-gradient(90deg, #00b4d8, #80ffdb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-info p {
  font-size: 1.1rem;
  margin: 8px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.contact-info i {
  font-size: 1.3rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-info .contact-text {
  transition: color 0.3s ease;
}

/* Add color animation on hover */
.contact-info p:hover i {
  transform: scale(1.3);
}

.contact-info .city:hover {
  color: #ff4d6d; /* pinkish-red */
}

.contact-info .email:hover {
  color: #ffb703; /* golden yellow */
}

.contact-info .phone:hover {
  color: #00c853; /* green */
}

/* CTA */
    .cta-section {
      text-align: center;
      background: linear-gradient(90deg, var(--accent-pink), var(--accent-blue));
      color: white;
      padding: 60px 20px;
      border-radius: 16px;
      margin-top: 60px;
    }

    .cta-section h3 {
      font-weight: 700;
      margin-bottom: 20px;
    }

    .cta-section a {
      background: white;
      color: var(--accent-blue);
      padding: 10px 24px;
      border-radius: 999px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .cta-section a:hover {
      background: var(--accent-blue);
      color: white;
    }
:root{
      --accent-pink: #ec4899;
      --accent-blue: #3b82f6;
      --accent-lime: #84cc16;
      --accent-purple: #8b5cf6;
      --text-dark: #111827;
      --muted-dark: #4b5563;
      --bg-light: #f9fafb;
      --radius: 14px;
    }
