/* ===== NOVI INFOSYS - REDESIGNED CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --navy: #0a1f3c;
  --navy-mid: #0f2d52;
  --blue: #1560bd;
  --accent: #ff6b00;
  --accent-light: #ff8c2f;
  --teal: #00c2a8;
  --light: #f4f7fb;
  --white: #ffffff;
  --text: #1a2332;
  --text-muted: #5a6a7e;
  --border: #dce4ef;
  --card-bg: #ffffff;
  --shadow: 0 4px 24px rgba(10,31,60,0.10);
  --shadow-lg: 0 12px 48px rgba(10,31,60,0.16);
  --radius: 14px;
  --radius-lg: 22px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.section-title { font-size: clamp(28px, 4vw, 42px); color: var(--navy); margin-bottom: 18px; }
.section-title span { color: var(--accent); }
.section-subtitle { font-size: 17px; color: var(--text-muted); max-width: 560px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-center .section-label { margin-left: auto; margin-right: auto; }

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: 800;
}
.logo span { color: var(--accent); }

nav { display: flex; align-items: center; gap: 4px; }
nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
nav a:hover { background: var(--light); color: var(--blue); }
nav a.btn-nav {
  background: var(--accent);
  color: white;
  padding: 9px 20px;
  font-weight: 600;
}
nav a.btn-nav:hover { background: var(--accent-light); color: white; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* HERO */
.hero {
  background: var(--navy);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(21,96,189,0.28) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(0,194,168,0.14) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.18);
  border: 1px solid rgba(255,107,0,0.35);
  color: #ffad6b;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  font-family: 'Syne', sans-serif;
}

.hero h1 { font-size: clamp(30px, 4.5vw, 54px); font-weight: 800; color: white; margin-bottom: 22px; line-height: 1.12; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.7; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-img-wrap {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}
.hero-img-wrap img { width: 100%; height: 340px; object-fit: cover; display: block; }

.hero-stat-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-stat-card.card-1 { bottom: -24px; left: -32px; }
.hero-stat-card.card-2 { top: -20px; right: -24px; }
.stat-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.stat-icon.orange { background: #fff3e8; }
.stat-icon.teal { background: #e0faf6; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-lbl { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--accent); color: white; box-shadow: 0 4px 18px rgba(255,107,0,0.35); }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,0,0.40); color: white; }
.btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.65); color: white; }
.btn-blue { background: var(--blue); color: white; }
.btn-blue:hover { background: #1252a3; transform: translateY(-2px); color: white; }
.btn-white { background: white; color: var(--accent); font-weight: 700; }
.btn-white:hover { background: #fff3e8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); color: var(--accent); }

/* TRUST BAR */
.trust-bar { background: var(--light); padding: 28px 0; border-bottom: 1px solid var(--border); }
.trust-items { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text-muted); }
.trust-item .icon { font-size: 22px; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all 0.28s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.service-icon { width: 58px; height: 58px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 22px; }
.service-icon.blue { background: #e8f0ff; }
.service-icon.orange { background: #fff3e8; }
.service-icon.teal { background: #e0faf6; }
.service-icon.purple { background: #f0eaff; }
.service-icon.green { background: #e8faf0; }
.service-icon.red { background: #fff0f0; }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 14px; font-weight: 600; color: var(--blue); text-decoration: none; transition: gap 0.2s; }
.card-link:hover { gap: 10px; }

/* WHY US */
.why-section { background: var(--navy); color: white; }
.why-section .section-title { color: white; }
.why-section .section-subtitle { color: rgba(255,255,255,0.65); }
.why-section .section-label { color: var(--teal); }
.why-section .section-label::before { background: var(--teal); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 52px; }
.why-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-lg); padding: 30px 24px; transition: all 0.25s; }
.why-card:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.20); transform: translateY(-4px); }
.why-num { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 14px; }
.why-card h4 { color: white; font-size: 17px; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.60); font-size: 14px; line-height: 1.65; }

/* PROCESS */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 56px; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--blue);
  margin: 0 auto 20px;
  transition: all 0.25s;
}
.process-step:hover .step-circle { background: var(--blue); color: white; transform: scale(1.08); }
.process-step h4 { font-size: 15px; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-muted); }

/* OFFER BANNER */
.offer-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #e05500 100%);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  position: relative; overflow: hidden;
}
.offer-banner::before {
  content: '₹500';
  position: absolute; right: -20px; top: -20px;
  font-family: 'Syne', sans-serif; font-size: 140px; font-weight: 800;
  color: rgba(255,255,255,0.08); line-height: 1; pointer-events: none;
}
.offer-text .offer-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.2); color: white;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px; margin-bottom: 16px;
}
.offer-text h2 { font-size: clamp(22px, 3vw, 34px); color: white; margin-bottom: 12px; }
.offer-text p { color: rgba(255,255,255,0.82); font-size: 15px; max-width: 440px; }
.offer-cta { flex-shrink: 0; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); display: block; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--accent); color: white;
  border-radius: var(--radius); padding: 20px 24px;
  text-align: center; box-shadow: var(--shadow-lg);
}
.about-badge .big { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; display: block; line-height: 1; }
.about-badge .sm { font-size: 13px; opacity: 0.85; }
.about-list { list-style: none; margin: 24px 0; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.about-list li:last-child { border-bottom: none; }
.check { width: 22px; height: 22px; border-radius: 50%; background: #e8f0ff; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; margin-top: 1px; }

/* LOCATIONS */
.locations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.location-card {
  background: var(--light); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 20px; text-align: center; text-decoration: none; transition: all 0.25s; display: block;
}
.location-card:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }
.location-card:hover h4, .location-card:hover p { color: white; }
.location-card .loc-icon { font-size: 30px; margin-bottom: 12px; display: block; }
.location-card h4 { font-size: 16px; margin-bottom: 4px; }
.location-card p { font-size: 13px; color: var(--text-muted); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 32px; margin-bottom: 14px; }
.contact-info p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.cd-icon { width: 44px; height: 44px; background: var(--light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.cd-text { font-size: 14px; color: var(--text-muted); }
.cd-val { font-size: 15px; font-weight: 600; color: var(--navy); margin-top: 2px; }
.contact-form { background: var(--light); border-radius: var(--radius-lg); padding: 40px; }
.contact-form h3 { font-size: 22px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 9px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--text); background: white;
  transition: border-color 0.2s; outline: none; resize: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); }
.form-group textarea { height: 100px; }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.60); max-width: 300px; margin-top: 14px; }
.footer-logo { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: white; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.footer-logo span { color: var(--accent); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 17px; text-decoration: none; transition: background 0.2s; }
.social-btn:hover { background: var(--accent); }
.footer-col h4 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.58); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 13px; color: rgba(255,255,255,0.40); flex-wrap: wrap; gap: 10px; }

/* WHATSAPP */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  text-decoration: none; box-shadow: 0 6px 24px rgba(37,211,102,0.50);
  z-index: 999; transition: transform 0.22s; animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.10); }
@keyframes pulse-wa { 0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.50); } 50% { box-shadow: 0 6px 40px rgba(37,211,102,0.75); } }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.blog-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.28s; text-decoration: none; display: block; color: inherit; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-card-body { padding: 24px; }
.blog-tag { display: inline-block; background: #e8f0ff; color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; margin-bottom: 12px; }
.blog-card h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 14px; color: var(--text-muted); }
.blog-meta { font-size: 13px; color: var(--text-muted); margin-top: 14px; }

/* PAGE HERO */
.page-hero {
  background:
    linear-gradient(135deg, rgba(10,25,60,0.82) 0%, rgba(15,40,90,0.78) 100%),
    url('../images/hero.jpg') center center / cover no-repeat;
  color: white; padding: 72px 0 60px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(21,96,189,0.20) 0%, transparent 70%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: white; font-size: clamp(28px, 4vw, 48px); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.70); font-size: 18px; max-width: 540px; margin: 0 auto; }
.breadcrumb { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.50); }
.breadcrumb a { color: rgba(255,255,255,0.70); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-steps::before { display: none; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .offer-banner { flex-direction: column; text-align: center; padding: 40px 28px; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; box-shadow: var(--shadow); }
  nav.open a { padding: 12px 16px; }
  .menu-toggle { display: flex; }
  .hero { padding: 70px 0 56px; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}

/* ===== LOGO IMAGE ===== */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img-footer {
  height: 44px;
  filter: none;
}
