/* ============================================================
   Incredible Softwares Pvt. Ltd. — Main Stylesheet
   Brand Colors: Red #CC0000, Green #1a5c2e, Blue #0033cc
   ============================================================ */

:root {
  --red:     #CC0000;
  --red-d:   #a30000;
  --red-l:   #ff1a1a;
  --green:   #1a5c2e;
  --green-l: #2a8c46;
  --blue:    #0033cc;
  --blue-l:  #0044ff;
  --dark:    #0f1724;
  --dark2:   #1a2540;
  --gray:    #64748b;
  --light:   #f8fafc;
  --white:   #ffffff;
  --shadow:  0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.15);
  --radius:  10px;
  --transition: all .3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Nunito', sans-serif;
  color: #1e293b;
  background: #fff;
  overflow-x: hidden;
}

/* ── Typography ─────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: 'Exo 2', sans-serif; font-weight: 700; line-height: 1.3; }
a { text-decoration: none; transition: var(--transition); }
p { line-height: 1.8; color: #475569; }

/* ── Topbar ─────────────────────────────────────── */
.topbar {
  background: var(--dark);
  padding: 8px 0;
  font-size: 13px;
  color: #94a3b8;
}
.topbar a { color: #94a3b8; }
.topbar a:hover { color: var(--red-l); }
.topbar .topbar-info span { margin-right: 20px; }
.topbar .topbar-info i { color: var(--red); margin-right: 5px; }
.topbar .social-links a {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: 5px; font-size: 13px;
}
.topbar .social-links a:hover { background: var(--red); color: #fff; }

/* ── Navbar ─────────────────────────────────────── */
.navbar {
  background: #fff !important;
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
  padding: 12px 0;
  position: sticky; top: 0; z-index: 1000;
}
.navbar-brand img { height: 52px; }
.navbar-brand .brand-text { font-family: 'Exo 2', sans-serif; font-size: 14px; font-weight: 700; line-height: 1.2; }
.navbar-brand .brand-name  { color: var(--blue); font-size: 16px; }
.navbar-brand .brand-sub   { color: var(--red); font-size: 11px; letter-spacing: .5px; }

.nav-link {
  font-weight: 600; font-size: 14px; color: var(--dark) !important;
  padding: 8px 14px !important; border-radius: 6px;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--red); transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }
.nav-link:hover, .nav-link.active { color: var(--red) !important; }

.dropdown-menu { border: none; box-shadow: var(--shadow-lg); border-radius: 10px; padding: 8px; }
.dropdown-item { border-radius: 6px; font-size: 13.5px; font-weight: 600; padding: 8px 14px; }
.dropdown-item:hover { background: #fef2f2; color: var(--red); }

.btn-quote {
  background: var(--red); color: #fff !important; border-radius: 50px !important;
  padding: 8px 22px !important; font-size: 13.5px !important;
  border: 2px solid var(--red);
}
.btn-quote:hover { background: transparent; color: var(--red) !important; }

/* ── Hero Section ───────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, #0d1b3e 100%);
  min-height: 88vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 80px 0;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-badge {
  display: inline-block; background: rgba(204,0,0,.2); border: 1px solid rgba(204,0,0,.4);
  color: #ff6666; padding: 6px 18px; border-radius: 50px; font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(30px,5vw,58px); color: #fff; margin-bottom: 20px; }
.hero h1 span { color: var(--red-l); }
.hero p { font-size: 17px; color: #94a3b8; max-width: 550px; margin-bottom: 32px; }

.btn-primary-red {
  background: var(--red); color: #fff; padding: 14px 36px; border-radius: 50px;
  font-weight: 700; font-size: 15px; border: 2px solid var(--red);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 32px rgba(204,0,0,.35);
}
.btn-primary-red:hover { background: transparent; color: #fff; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: #fff; padding: 14px 36px; border-radius: 50px;
  font-weight: 700; font-size: 15px; border: 2px solid rgba(255,255,255,.4);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

.hero-stats { display: flex; gap: 32px; margin-top: 48px; }
.hero-stats .stat-item { text-align: center; }
.hero-stats .stat-num  { font-family: 'Exo 2',sans-serif; font-size: 36px; font-weight: 800; color: var(--red-l); line-height: 1; }
.hero-stats .stat-label{ font-size: 12px; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.hero-img-wrap {
  position: relative;
}
.hero-img-wrap::before {
  content: ''; position: absolute; top: -20px; right: -20px; bottom: -20px; left: -20px;
  border: 2px solid rgba(204,0,0,.2); border-radius: 20px; animation: pulse 3s infinite;
}
@keyframes pulse { 0%,100%{opacity:.4;transform:scale(1);} 50%{opacity:.8;transform:scale(1.02);} }
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(20px); border-radius: 16px; padding: 32px; color: #fff;
}
.floating-badge {
  position: absolute; background: #fff; border-radius: 12px;
  padding: 12px 18px; box-shadow: var(--shadow-lg); font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.floating-badge.badge-1 { top: -20px; right: -10px; font-size: 13px; color: var(--green); }
.floating-badge.badge-2 { bottom: -20px; left: -10px; font-size: 13px; color: var(--blue); }

/* ── Section Headers ────────────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; background: #fef2f2; color: var(--red);
  padding: 5px 18px; border-radius: 50px; font-size: 13px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
}
.section-title { font-size: clamp(26px,4vw,40px); color: var(--dark); margin-bottom: 16px; }
.section-title span { color: var(--red); }
.section-desc  { font-size: 16px; color: var(--gray); max-width: 620px; margin: 0 auto; }
.section-divider {
  width: 60px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg,var(--red),var(--blue));
  margin: 16px auto 0;
}

/* ── Services ───────────────────────────────────── */
.services { padding: 100px 0; background: var(--light); }
.service-card {
  background: #fff; border-radius: 16px; padding: 36px 28px;
  box-shadow: var(--shadow); border: 1px solid #e2e8f0;
  transition: var(--transition); height: 100%;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg,var(--red),var(--blue)); transform: scaleX(0);
  transition: var(--transition); transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 64px; height: 64px; border-radius: 14px; margin-bottom: 22px;
  background: linear-gradient(135deg,#fef2f2,#fff0f0);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--red);
}
.service-card h4 { font-size: 18px; color: var(--dark); margin-bottom: 12px; }
.service-card p  { font-size: 14px; line-height: 1.7; color: var(--gray); }
.service-link    { color: var(--red); font-weight: 700; font-size: 14px; margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }

/* ── Why Choose Us ──────────────────────────────── */
.why-us { padding: 100px 0; }
.why-card {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px; border-radius: 14px; background: var(--light);
  border: 1px solid #e2e8f0; transition: var(--transition); margin-bottom: 20px;
}
.why-card:hover { background: #fff; box-shadow: var(--shadow); transform: translateX(6px); }
.why-icon {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 12px;
  background: linear-gradient(135deg,var(--red),var(--red-d));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
}
.why-card h5 { font-size: 17px; margin-bottom: 6px; }
.why-card p  { font-size: 13.5px; margin: 0; }

/* ── Stats Banner ───────────────────────────────── */
.stats-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 80px 0;
}
.stat-box { text-align: center; }
.stat-box .num   { font-family: 'Exo 2',sans-serif; font-size: 54px; font-weight: 900; color: var(--red-l); line-height: 1; }
.stat-box .label { font-size: 15px; color: #94a3b8; margin-top: 8px; font-weight: 600; }
.stat-box .icon  { font-size: 32px; color: rgba(255,255,255,.2); margin-bottom: 8px; }

/* ── Portfolio ──────────────────────────────────── */
.portfolio { padding: 100px 0; background: var(--light); }
.portfolio-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center; }
.filter-btn {
  padding: 8px 22px; border-radius: 50px; border: 2px solid #e2e8f0;
  background: #fff; font-weight: 600; font-size: 13.5px; cursor: pointer; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.portfolio-card {
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); background: #fff;
  transition: var(--transition); height: 100%;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-img { height: 220px; background: linear-gradient(135deg,var(--dark),var(--dark2)); position: relative; overflow: hidden; }
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-overlay {
  position: absolute; inset: 0; background: rgba(204,0,0,.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-body { padding: 22px; }
.portfolio-body h5 { font-size: 17px; margin-bottom: 6px; }
.portfolio-body .cat { font-size: 12px; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ── Testimonials ───────────────────────────────── */
.testimonials { padding: 100px 0; }
.testi-card {
  background: #fff; border-radius: 16px; padding: 36px; box-shadow: var(--shadow);
  border: 1px solid #e2e8f0; position: relative; height: 100%;
}
.testi-card::before {
  content: '\201C'; position: absolute; top: 20px; right: 28px;
  font-size: 80px; color: #fef2f2; font-family: Georgia,serif; line-height: 1;
}
.stars { color: #f59e0b; font-size: 14px; margin-bottom: 16px; }
.testi-card p { font-size: 15px; line-height: 1.8; color: #475569; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg,var(--red),var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 20px; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 15px; }
.testi-co   { font-size: 12.5px; color: var(--gray); }

/* ── Team ───────────────────────────────────────── */
.team { padding: 100px 0; background: var(--light); }
.team-card {
  text-align: center; background: #fff; border-radius: 16px;
  padding: 36px 24px; box-shadow: var(--shadow); transition: var(--transition); height: 100%;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(135deg,var(--red),var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: #fff; font-weight: 800;
  border: 4px solid #fff; box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.team-card h5 { font-size: 17px; margin-bottom: 4px; }
.team-card .role { color: var(--red); font-size: 13px; font-weight: 700; }
.team-social { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.team-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--light); border: 1px solid #e2e8f0;
  display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gray);
}
.team-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ── Blog ───────────────────────────────────────── */
.blog { padding: 100px 0; }
.blog-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid #e2e8f0;
  transition: var(--transition); height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img { height: 200px; background: linear-gradient(135deg,var(--dark),var(--blue)); overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 24px; }
.blog-cat  { display: inline-block; background: #fef2f2; color: var(--red); padding: 3px 12px; border-radius: 50px; font-size: 12px; font-weight: 700; margin-bottom: 12px; }
.blog-body h5 { font-size: 17px; margin-bottom: 10px; }
.blog-body h5 a { color: var(--dark); }
.blog-body h5 a:hover { color: var(--red); }
.blog-meta { font-size: 12.5px; color: var(--gray); border-top: 1px solid #f1f5f9; padding-top: 12px; margin-top: 12px; }

/* ── CTA ────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-d) 100%);
  padding: 90px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-5h-5v-5h5v-.5zM15 45V20H0v5h5v5H0v5h5v5H0v5h15v-5h-5v-5h5zm0 0'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { font-size: clamp(28px,4vw,44px); color: #fff; margin-bottom: 16px; }
.cta-section p  { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 36px; }
.btn-cta-white {
  background: #fff; color: var(--red); padding: 14px 40px; border-radius: 50px;
  font-weight: 800; font-size: 16px; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.btn-cta-white:hover { background: var(--dark); color: #fff; transform: translateY(-2px); }
.btn-cta-outline {
  background: transparent; color: #fff; padding: 14px 40px; border-radius: 50px;
  font-weight: 700; font-size: 16px; border: 2px solid rgba(255,255,255,.6);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

/* ── Contact ────────────────────────────────────── */
.contact { padding: 100px 0; background: var(--light); }
.contact-box {
  background: #fff; border-radius: 16px; padding: 40px;
  box-shadow: var(--shadow); height: 100%;
}
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start; padding: 20px;
  border-radius: 12px; background: var(--light); margin-bottom: 16px;
}
.contact-info-item .ci-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  background: linear-gradient(135deg,var(--red),var(--red-d));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
}
.contact-info-item h6 { font-size: 13px; color: var(--gray); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .5px; }
.contact-info-item p  { font-size: 15px; font-weight: 600; margin: 0; color: var(--dark); }
.form-control, .form-select {
  border-radius: 10px; border-color: #e2e8f0; padding: 12px 16px;
  font-size: 14px; transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,0,0,.12);
}
.form-label { font-weight: 700; font-size: 13.5px; margin-bottom: 6px; }
.btn-submit {
  background: linear-gradient(135deg,var(--red),var(--red-d));
  color: #fff; padding: 14px 40px; border-radius: 50px; border: none;
  font-weight: 700; font-size: 15px; width: 100%; cursor: pointer; transition: var(--transition);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(204,0,0,.35); }

/* ── Footer ─────────────────────────────────────── */
footer {
  background: var(--dark); color: #94a3b8; padding: 80px 0 0;
}
footer h5 { color: #fff; font-size: 17px; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
footer h5::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 40px; height: 3px; background: var(--red); border-radius: 3px;
}
footer a { color: #94a3b8; font-size: 14px; display: block; margin-bottom: 8px; }
footer a:hover { color: var(--red-l); padding-left: 4px; }
footer p { font-size: 14px; line-height: 1.8; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06); margin-right: 8px;
  font-size: 15px; color: #94a3b8;
}
.footer-social a:hover { background: var(--red); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); margin-top: 60px;
  padding: 22px 0; font-size: 13px;
}

/* ── WhatsApp Floating ───────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.4); animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }

/* ── Scroll to top ───────────────────────────────── */
#scrollTop {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%; background: var(--red);
  color: #fff; border: none; font-size: 18px; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(204,0,0,.4);
}
#scrollTop.show { display: flex; }

/* ── Page Banner ─────────────────────────────────── */
.page-banner {
  background: linear-gradient(135deg,var(--dark) 0%,var(--dark2) 100%);
  padding: 90px 0 70px; position: relative; overflow: hidden;
}
.page-banner h1 { color: #fff; font-size: clamp(28px,4vw,44px); }
.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a { color: #94a3b8; font-size: 14px; }
.page-banner .breadcrumb-item.active { color: var(--red-l); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: #64748b; }

/* ── Utilities ───────────────────────────────────── */
.text-red   { color: var(--red)   !important; }
.text-green { color: var(--green) !important; }
.text-blue  { color: var(--blue)  !important; }
.bg-red     { background: var(--red) !important; }
.bg-green   { background: var(--green) !important; }
.rounded-xl { border-radius: 16px !important; }
.shadow-lg-custom { box-shadow: var(--shadow-lg) !important; }

/* ── Animations ─────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .6s, transform .6s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
  .topbar .topbar-info { display: none; }
  .hero { min-height: auto; padding: 60px 0; }
  .hero-stats { gap: 20px; }
  .hero-stats .stat-num { font-size: 26px; }
  section { padding: 70px 0; }
  .stat-box .num { font-size: 40px; }
}
