
/* =========================
   GLOBAL
========================= */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f8fbff;
  color: #333;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* =========================
   TOP BAR
========================= */
.top-bar {
  background: linear-gradient(90deg, #0d6efd, #00c6ff);
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
}

.top-bar a {
  color: #fff;
  font-weight: 500;
}

/* =========================
   NAVBAR
========================= */
.navbar-brand {
  letter-spacing: 0.5px;
}

.nav-link {
  color: #333 !important;
  margin: 0 6px;
}

.nav-link:hover,
.nav-link.active {
  color: #0d6efd !important;
}

/* =========================
   HERO SECTION
========================= */
.hero-section {
  padding: 90px 0;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #0a2540;
  line-height: 1.2;
}

.hero-title span {
  color: #0d6efd;
}

.hero-text {
  font-size: 17px;
  margin-top: 20px;
  color: #555;
}

/* HERO IMAGE SHAPE */
.hero-shape {
  background: linear-gradient(135deg, #0d6efd, #00c6ff);
  border-radius: 38% 62% 63% 37%;
  padding: 18px;
  display: inline-block;
  box-shadow: 0 20px 40px rgba(13, 110, 253, 0.25);
}

.hero-shape img {
  border-radius: 38% 62% 63% 37%;
}

/* =========================
   SERVICES
========================= */
.service-card {
  background: #f8fbff;
  padding: 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.service-card i {
  font-size: 40px;
  color: #0d6efd;
  margin-bottom: 15px;
  transition: 0.3s;
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover i {
  transform: scale(1.15);
}

/* =========================
   WHY CHOOSE US
========================= */
.stat-box {
  padding: 28px;
  border-radius: 14px;
  font-weight: bold;
  font-size: 20px;
  transition: 0.3s;
}

.stat-box:hover {
  transform: scale(1.05);
}

/* =========================
   TEMPLATES / PRODUCTS
========================= */
.card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-body h5 {
  font-weight: 600;
}

.card-body p {
  font-weight: 500;
  color: #0d6efd;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #0a2540;
  color: #fff;
  padding: 60px 0 30px;
}

.footer h5,
.footer h6 {
  font-weight: 600;
}

.footer a {
  color: #fff;
  margin-right: 12px;
  font-size: 18px;
}

.footer a:hover {
  color: #00c6ff;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer hr {
  border-color: rgba(255,255,255,0.2);
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 14px 16px;
  border-radius: 50%;
  font-size: 26px;
  z-index: 999;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* =========================
   SCROLL ANIMATION
========================= */
.service-card,
.card,
.stat-box {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero-title {
    font-size: 38px;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-section {
    padding: 60px 0;
  }
}
/* =========================
   PREMIUM FOOTER
========================= */
.footer-pro {
  background: linear-gradient(135deg, #0a2540, #061a2f);
  color: #fff;
  padding: 70px 0 25px;
}

.footer-logo {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-logo span {
  color: #00c6ff;
}

.footer-desc {
  color: #cfd8e3;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-pro ul {
  list-style: none;
  padding: 0;
}

.footer-pro ul li {
  margin-bottom: 10px;
}

.footer-pro ul li a {
  color: #cfd8e3;
  font-size: 14px;
  transition: 0.3s;
}

.footer-pro ul li a:hover {
  color: #00c6ff;
  padding-left: 4px;
}

/* SOCIAL */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #00c6ff;
  color: #000;
}

/* CONTACT */
.footer-contact p {
  font-size: 14px;
  color: #cfd8e3;
  margin-bottom: 8px;
}

.footer-contact i {
  color: #00c6ff;
  margin-right: 6px;
}

/* WHATSAPP BUTTON */
.footer-whatsapp {
  display: inline-block;
  margin-top: 12px;
  background: #25d366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
}

/* BOTTOM */
.footer-pro hr {
  border-color: rgba(255,255,255,0.15);
  margin: 30px 0 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #cfd8e3;
}

.footer-links a {
  color: #cfd8e3;
  margin-left: 15px;
  font-size: 13px;
}

.footer-links a:hover {
  color: #00c6ff;
}

/* MOBILE */
@media(max-width:768px){
  .footer-bottom {
    text-align: center;
    justify-content: center;
  }
  .footer-links {
    margin-top: 10px;
  }
}

/* =========================
   WHATSAPP FLOAT (PREMIUM)
========================= */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 90px; /* thoda upar – footer se clear */
  background: linear-gradient(135deg, #25d366, #1ebe57);
  color: #fff;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  z-index: 9999;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.65);
  color: #fff;
}

/* Mobile thoda upar */
@media(max-width:768px){
  .whatsapp-float{
    bottom: 70px;
    right: 18px;
  }
}
/* =========================
   FINAL FOOTER (FIXED)
========================= */
.footer-pro {
  background: linear-gradient(180deg, #0a2540 0%, #081c33 100%);
  color: #e6edf5;
  padding: 70px 0 30px;
}

/* LOGO */
.footer-logo {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-logo span {
  color: #0d6efd;
}

/* DESCRIPTION */
.footer-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #cfd8e3;
  margin-bottom: 20px;
}

/* TITLES */
.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #ffffff;
}

/* LINKS */
.footer-pro ul {
  list-style: none;
  padding: 0;
}

.footer-pro ul li {
  margin-bottom: 8px;
}

.footer-pro ul li a {
  color: #cfd8e3;
  font-size: 14px;
  transition: 0.3s;
}

.footer-pro ul li a:hover {
  color: #0d6efd;
  padding-left: 4px;
}

/* SOCIAL */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #0d6efd;
  color: #ffffff;
}

/* CONTACT */
.footer-contact p {
  font-size: 14px;
  color: #cfd8e3;
  margin-bottom: 8px;
}

.footer-contact i {
  color: #0d6efd;
  margin-right: 6px;
}

/* WHATSAPP BUTTON INSIDE FOOTER */
.footer-whatsapp {
  display: inline-block;
  margin-top: 14px;
  background: #25d366;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-whatsapp:hover {
  background: #1ebe57;
  color: #ffffff;
}

/* DIVIDER */
.footer-pro hr {
  border-color: rgba(255,255,255,0.15);
  margin: 30px 0 20px;
}

/* BOTTOM BAR */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #cfd8e3;
}

.footer-links a {
  color: #cfd8e3;
  margin-left: 15px;
  font-size: 13px;
}

.footer-links a:hover {
  color: #0d6efd;
}

/* MOBILE FIX */
@media(max-width:768px){
  .footer-bottom {
    text-align: center;
    justify-content: center;
  }
  .footer-links {
    margin-top: 10px;
  }
}
/* =========================
   HOME SERVICES
========================= */
.home-services {
  padding: 80px 0;
  background: #f8fbff;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0a2540;
}

.section-title span {
  color: #0d6efd;
}

.section-subtitle {
  max-width: 700px;
  margin: 12px auto 0;
  color: #555;
  font-size: 16px;
}

.service-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  height: 100%;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.service-box i {
  font-size: 38px;
  color: #0d6efd;
  margin-bottom: 15px;
}

.service-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 14.5px;
  color: #555;
}

.service-box a {
  display: inline-block;
  margin-top: 10px;
  font-weight: 500;
  color: #0d6efd;
  text-decoration: none;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* MOBILE */
@media(max-width:768px){
  .section-title {
    font-size: 28px;
  }
}
/* =========================
   HOME PRODUCTS
========================= */
.home-products {
  padding: 80px 0;
  background: #ffffff;
}

.product-box {
  position: relative;
  background: #f8fbff;
  border-radius: 14px;
  padding: 32px 28px;
  height: 100%;
  transition: 0.3s;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.product-box i {
  font-size: 40px;
  color: #0d6efd;
  margin-bottom: 16px;
}

.product-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.product-box p {
  font-size: 14.5px;
  color: #555;
}

.product-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* TAG */
.product-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #0d6efd;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

/* MOBILE */
@media(max-width:768px){
  .home-products {
    padding: 60px 0;
  }
}
/* =========================
   CTA BUTTON (ANIMATED)
========================= */
.cta-btn {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #0d6efd, #00c6ff);
  color: #fff;
  border: none;
  padding: 14px 42px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(13,110,253,0.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Hover lift */
.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(13,110,253,0.55);
  color: #fff;
}

/* Shine sweep */
.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.35) 50%,
    transparent 100%
  );
  transition: left .6s ease;
}

.cta-btn:hover::before {
  left: 120%;
}

/* Soft pulse (idle attention) */
@keyframes ctaPulse {
  0% { box-shadow: 0 0 0 0 rgba(13,110,253,.45); }
  70% { box-shadow: 0 0 0 14px rgba(13,110,253,0); }
  100% { box-shadow: 0 0 0 0 rgba(13,110,253,0); }
}

.cta-pulse {
  animation: ctaPulse 2.2s infinite;
}

/* Focus (accessibility) */
.cta-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(13,110,253,.35);
}

/* Mobile tuning */
@media (max-width: 768px){
  .cta-btn{
    font-size: 16px;
    padding: 12px 34px;
  }
}
.page-hero{
  padding:70px 0;
  background:#f8fbff;
}
.product-item{ transition:.3s; }
/* ================= CONTACT PAGE – PREMIUM ================= */
.page-hero {
  padding: 70px 0 50px;
  background: linear-gradient(135deg,#f8fbff,#eef4ff);
}

@media(max-width:768px){
  .page-hero {
    padding: 50px 0 35px;
  }
}

/* CONTACT CARD */
.contact-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  animation: fadeUp .6s ease;
}

@keyframes fadeUp {
  from {opacity:0; transform:translateY(20px)}
  to   {opacity:1; transform:translateY(0)}
}

/* FORM */
#contactForm .form-control,
#contactForm .form-select {
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
}

#contactForm .form-control:focus,
#contactForm .form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.15rem rgba(13,110,253,.15);
}

/* BUTTON */
#contactForm .cta-btn {
  padding: 14px;
  font-size: 16px;
  border-radius: 40px;
}

/* ALERTS */
.alert {
  border-radius: 14px;
  font-size: 14px;
}

/* PRICE HINT */
#priceHint {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #0d6efd;
}

/* MOBILE FIXES */
@media(max-width:768px){
  .contact-info {
    text-align: center;
  }
  .contact-info p {
    justify-content: center;
  }
}

/* STICKY WHATSAPP (MOBILE) */
.whatsapp-mobile {
  display: none;
}

@media(max-width:768px){
  .whatsapp-mobile {
    display: flex;
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #25d366;
    color: #fff;
    padding: 14px 24px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    z-index: 999;
    box-shadow: 0 12px 25px rgba(0,0,0,.25);
    text-decoration: none;
  }
}

/* ================= PROJECTS ================= */
.project-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: .35s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.project-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #fff;
  font-size: 30px;
}

.project-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  background: #eef4ff;
  color: #0d6efd;
  font-weight: 600;
}
.project-details ul li {
  font-size: 15px;
}

.shadow-lg {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}

.rounded-4 {
  border-radius: 1.2rem;
}

.sticky-top {
  z-index: 99;
}

