/* ======================= Navbar ======================= */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-toggler {
    border-color: #ddd;
}
.navbar-nav .nav-link {
    color: #111;
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -6px;
    background: #a60018;
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}
.navbar-nav .nav-link:hover {
    color: #a60018;
}
.navbar-nav .nav-link.active {
    color: #a60018;
    font-weight: 600;
}
.navbar-brand img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.navbar-brand img:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.dropdown-menu {
    background-color: #fff;
    border-radius: 8px;
    border: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.dropdown-item {
    transition: background 0.2s ease;
}
.dropdown-item:hover {
    background-color: #f8f8f8;
    color: #a60018;
}

/* ======================= Featurette ======================= */
.featurette-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}
.featurette-img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.featurette-heading {
    font-weight: 600;
}
.featurette-background {
    background: linear-gradient(135deg, #ffeaea, #fff5f0);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.featurette-background:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* ======================= Product Cards ======================= */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

/* ======================= Footer ======================= */
footer {
    background: #ffffff;
    color: #111;
    padding: 2rem 0;
    border-radius: 8px;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05), 0 2px 8px rgba(0,0,0,0.04);
}
footer a {
    color: #e74a4a;
}
footer a:hover {
    color: #fff;
    text-decoration: none;
}

/* ======================= Back to Top Button ======================= */
#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 40px;
    z-index: 99;
    font-size: 24px;
    border: none;
    outline: none;
    background-color: #000;
    color: white;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}
#backToTopBtn:hover {
    transform: translateY(-3px) scale(1.1);
}
@media (max-width: 768px) {
    #backToTopBtn {
        bottom: 120px;
        right: 20px;
    }
}

/* ======================= Sections & Buttons ======================= */
h2 {
    margin-bottom: 2rem;
}
.btn-primary {
    background-color: #6a0dad;
    border-color: #6a0dad;
}
.btn-primary:hover {
    background-color: #0047ab;
    border-color: #0047ab;
}

/* Featurette hover */
.featurette-img { transition: transform 0.3s ease, box-shadow 0.3s ease; border-radius: 8px; }
.featurette-img:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.featurette-heading { font-weight: 600; }

/* Hero Section */
.hero-section {
  background: #ffffff;
  border-radius: 8px;
  box-shadow:  0 10px 30px rgba(0, 0, 0, 0.05),0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 3rem;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.hero-section h1 { line-height: 1.2; }
.hero-section .btn:hover { transform: translateY(-3px) scale(1.05); transition: transform 0.3s ease; }
.hero-section .btn { animation: pulseCTA 2s infinite; }
@keyframes pulseCTA { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* Animated Hero Icons */
.hero-icon {
  font-size: 3rem; color: rgb(22, 71, 114);
  position: absolute; animation: float 6s ease-in-out infinite;
}
.hero-icon:nth-child(1){ top: 10%; left: 15%; animation-delay: 0s;}
.hero-icon:nth-child(2){ top: 50%; left: 80%; animation-delay: 2s;}
.hero-icon:nth-child(3){ top: 75%; left: 40%; animation-delay: 4s;}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* Partner logos hover */
.partner-logo { max-height: 80px; transition: transform 0.3s ease, filter 0.3s ease; }
.partner-logo:hover { transform: scale(1.1) translateY(-3px); filter: drop-shadow(0 8px 15px rgba(0,0,0,0.2)); }

/* Featurette Icons */
.featurette-icon {
  font-size: 3rem; color: #630000; margin-bottom: 15px; transition: transform 0.3s ease, color 0.3s ease;
}
.featurette-icon:hover { transform: translateY(-5px) scale(1.2); color: #000000; }

/* CTA Banner */
.cta-banner { background: #f8f9fa; border-radius:8px;  color: #111; padding: 3rem 0; }
.cta-banner .btn:hover { transform: translateY(-3px) scale(1.05); }



/* ======================= Navbar ======================= */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-toggler {
    border-color: #ddd;
}
.navbar-nav .nav-link {
    color: #111;
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -6px;
    background: #a60018;
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}
.navbar-nav .nav-link:hover {
    color: #a60018;
}
.navbar-nav .nav-link.active {
    color: #a60018;
    font-weight: 600;
}
.navbar-brand img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.navbar-brand img:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.dropdown-menu {
    background-color: #fff;
    border-radius: 8px;
    border: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.dropdown-item {
    transition: background 0.2s ease;
}
.dropdown-item:hover {
    background-color: #f8f8f8;
    color: #a60018;
}

/* ======================= Featurette ======================= */
.featurette-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}
.featurette-img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.featurette-heading {
    font-weight: 600;
}
.featurette-background {
    background: linear-gradient(135deg, #ffeaea, #fff5f0);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.featurette-background:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* ======================= Product Cards ======================= */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

/* ======================= Footer ======================= */
footer {
    background: #ffffff;
    color: #111;
    padding: 2rem 0;
    border-radius: 8px;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05), 0 2px 8px rgba(0,0,0,0.04);
}
footer a {
    color: #e74a4a;
}
footer a:hover {
    color: #fff;
    text-decoration: none;
}

/* ======================= Back to Top Button ======================= */
#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 40px;
    z-index: 99;
    font-size: 24px;
    border: none;
    outline: none;
    background-color: #000;
    color: white;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}
#backToTopBtn:hover {
    transform: translateY(-3px) scale(1.1);
}
@media (max-width: 768px) {
    #backToTopBtn {
        bottom: 120px;
        right: 20px;
    }
}

/* ======================= Sections & Buttons ======================= */
h2 {
    margin-bottom: 2rem;
}
.btn-primary {
    background-color: #6a0dad;
    border-color: #6a0dad;
}
.btn-primary:hover {
    background-color: #0047ab;
    border-color: #0047ab;
}

/* Featurette hover */
.featurette-img { transition: transform 0.3s ease, box-shadow 0.3s ease; border-radius: 8px; }
.featurette-img:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.featurette-heading { font-weight: 600; }

/* Hero Section */
.hero-section {
  background: #ffffff;
  border-radius: 8px;
  box-shadow:  0 10px 30px rgba(0, 0, 0, 0.05),0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 3rem;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.hero-section h1 { line-height: 1.2; }
.hero-section .btn:hover { transform: translateY(-3px) scale(1.05); transition: transform 0.3s ease; }
.hero-section .btn { animation: pulseCTA 2s infinite; }
@keyframes pulseCTA { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* Animated Hero Icons */
.hero-icon {
  font-size: 3rem; color: rgb(22, 71, 114);
  position: absolute; animation: float 6s ease-in-out infinite;
}
.hero-icon:nth-child(1){ top: 10%; left: 15%; animation-delay: 0s;}
.hero-icon:nth-child(2){ top: 50%; left: 80%; animation-delay: 2s;}
.hero-icon:nth-child(3){ top: 75%; left: 40%; animation-delay: 4s;}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* Partner logos hover */
.partner-logo { max-height: 80px; transition: transform 0.3s ease, filter 0.3s ease; }
.partner-logo:hover { transform: scale(1.1) translateY(-3px); filter: drop-shadow(0 8px 15px rgba(0,0,0,0.2)); }

/* Featurette Icons */
.featurette-icon {
  font-size: 3rem; color: #630000; margin-bottom: 15px; transition: transform 0.3s ease, color 0.3s ease;
}
.featurette-icon:hover { transform: translateY(-5px) scale(1.2); color: #000000; }

/* CTA Banner */
.cta-banner { background: #f8f9fa; border-radius:8px;  color: #111; padding: 3rem 0; }
.cta-banner .btn:hover { transform: translateY(-3px) scale(1.05); }


/*--------------------------------------------------------------------*/
/* ================= HERO IMAGE ================= */
    .hero-img {
      width: 100%;
      max-height: 420px;
      object-fit: contain;
      background: #000;
    }

    /* ================= TEAM ================= */
    .team-card {
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .team-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    }
    .team-card img {
      height: 260px;
      object-fit: contain;
      background-color: #f5f5f5;
      padding: 10px;
    }

    .team-img-wrapper {
      position: relative;
    }

    /* LinkedIn & Email Icons */
    .icon-stack {
      position: absolute;
      top: 12px;
      right: 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      opacity: 0;
      transform: scale(0.8);
      transition: all 0.3s ease;
      z-index: 5;
    }
    .theme-card:hover .icon-stack {
      opacity: 1;
      transform: scale(1);
    }
    .icon-stack a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: #fff;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .icon-stack a.linkedin {
      background: #0a66c2;
    }
    .icon-stack a.email {
      background: #6c757d;
    }
    .icon-stack a:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    }

    

    /* Section backgrounds & cards */
    .section-soft-red { background: linear-gradient(135deg, #f9f9f9, #ffeaea); }
    .section-soft-blue { background: linear-gradient(135deg, #f9f9f9, #e6f0ff); }
    .section-wrap { padding: 4rem 0; border-radius: 16px; margin-bottom: 3rem; }
    .theme-card { background: #fff; border-radius: 16px; box-shadow: 0 10px 25px rgba(0,0,0,0.15); transition: transform 0.3s ease, box-shadow 0.3s ease; }
    .theme-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(0,0,0,0.25); }
    .theme-card img { border-radius: 12px; }
    .section-title { font-weight: 600; letter-spacing: 0.5px; }
    .section-subtitle { color: #6c757d; font-size: 1.05rem; }
    .section-divider { width: 80px; height: 4px; background: linear-gradient(90deg, #eb1c24, #6a0dad, #0047ab); margin: 1rem auto 2.5rem; border-radius: 4px; }
  
