/*
Theme Name: Flipkart Account Management
Theme URI: https://flipkartaccountmanagement.com
Description: Custom theme for Flipkart Account Management
Version: 1.0
Author: Your Name
*/

/* =========================
   PREMIUM FLIPKART AGENCY UI
========================= */

:root {
  --blue-dark: #0d1b6e;
  --blue-mid: #1a2fb8;
  --blue-bright: #2563eb;
  --blue-light: #3b82f6;
  --accent: #f59e0b;
  --accent2: #10b981;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text: #0f172a;
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 72px;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(13,27,110,0.10);
  --shadow-lg: 0 12px 48px rgba(13,27,110,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: var(--blue-dark);
  padding: 0 5%;
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.25); }

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 800;
  color: var(--white); text-decoration: none;
  letter-spacing: -.5px; flex: 1;
}
.nav-brand span { color: var(--accent); }

.nav-links {
  display: flex; gap: 2rem; list-style: none; align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.85); text-decoration: none;
  font-weight: 500; font-size: .95rem; transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .cta-btn {
  background: var(--accent); color: var(--blue-dark);
  padding: .5rem 1.25rem; border-radius: 8px;
  font-weight: 700; transition: background .2s, transform .2s;
}
.nav-links .cta-btn:hover { background: #fbbf24; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--blue-dark);
  padding: 1.5rem 5%; z-index: 999;
  flex-direction: column; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.9); text-decoration: none;
  font-weight: 500; font-size: 1rem; padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .cta-mobile {
  background: var(--accent); color: var(--blue-dark);
  padding: .75rem; border-radius: 8px;
  font-weight: 700; text-align: center; margin-top: .5rem;
}

/* ── HERO ── */
#home {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 55%, #1e40af 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
#home::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(59,130,246,.25) 0%, transparent 70%);
  border-radius: 50%;
}
#home::after {
  content: '';
  position: absolute; bottom: -15%; left: -8%;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(245,158,11,.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 5px 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 2; width: 100%;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800;
  color: var(--white); line-height: 1.1;
  letter-spacing: -1px; margin-bottom: 1.25rem;
}
.hero-text h1 span { color: var(--accent); }
.hero-text p {
  color: rgba(255,255,255,.82); font-size: 1.1rem;
  line-height: 1.7; margin-bottom: 2rem; max-width: 480px;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--accent); color: var(--blue-dark);
  padding: .85rem 2rem; border-radius: 10px;
  font-weight: 700; font-family: var(--font-display); font-size: .95rem;
  text-decoration: none; display: inline-block; transition: all .25s;
  box-shadow: 0 4px 20px rgba(245,158,11,.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(245,158,11,.5); }

.btn-outline {
  border: 2px solid rgba(255,255,255,.5); color: var(--white);
  padding: .85rem 2rem; border-radius: 10px;
  font-weight: 600; font-size: .95rem;
  text-decoration: none; display: inline-block; transition: all .25s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.stat { text-align: left; }
.stat .num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1;
}
.stat .label {
  font-size: .8rem; color: rgba(255,255,255,.65); margin-top: 2px;
  text-transform: uppercase; letter-spacing: .5px;
}

.hero-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px; padding: 2rem;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-card-title {
  font-family: var(--font-display);
  color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 1.2rem;
}
.feature-list { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.feature-list li {
  display: flex; align-items: center; gap: .75rem;
  color: rgba(255,255,255,.85); font-size: .95rem;
}
.feature-list li .icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

/* ── SHARED SECTION ── */
section { padding: 90px 5%; }
.section-label {
  font-size: .8rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue-bright); margin-bottom: .6rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
  color: var(--text); line-height: 1.2; letter-spacing: -.5px; margin-bottom: 1rem;
}
.section-sub {
  color: var(--gray-600); font-size: 1.05rem;
  line-height: 1.7; max-width: 560px;
}
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }
.container { max-width: 1200px; margin: 0 auto; }

/* ── SERVICES ── */
#services { background: var(--gray-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
  border: 1px solid var(--gray-200); transition: all .3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue-bright), var(--blue-light));
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.25rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; color: var(--text);
}
.service-card p { color: var(--gray-600); line-height: 1.6; font-size: .95rem; }

/* ── ABOUT ── */
#about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-radius: 20px; padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.metric-row {
  background: rgba(255,255,255,.1); border-radius: 12px;
  padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center;
}
.metric-row .metric-label { color: rgba(255,255,255,.75); font-size: .9rem; }
.metric-row .metric-val {
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--accent);
}
.why-list { display: flex; flex-direction: column; gap: 1.2rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-item .check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue-bright); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; flex-shrink: 0; margin-top: 2px;
}
.why-item h4 {
  font-family: var(--font-display); font-weight: 700; margin-bottom: .2rem; color: var(--text);
}
.why-item p { color: var(--gray-600); font-size: .92rem; line-height: 1.5; }

/* ── PROCESS ── */
#process { background: var(--gray-50); }
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem;
}
.step {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid var(--gray-200);
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark));
  color: var(--white); font-family: var(--font-display); font-weight: 800;
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step h4 { font-family: var(--font-display); font-weight: 700; margin-bottom: .5rem; }
.step p { color: var(--gray-600); font-size: .9rem; line-height: 1.5; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--blue-dark); }
#testimonials .section-label { color: var(--accent); }
#testimonials .section-title { color: var(--white); }
#testimonials .section-sub { color: rgba(255,255,255,.65); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
}
.testi-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 2rem;
}
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 1rem; }
.testi-text { color: rgba(255,255,255,.85); line-height: 1.7; font-size: .95rem; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: .85rem; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--blue-dark); font-size: 1rem;
}
.author-info .name { color: var(--white); font-weight: 700; font-size: .95rem; }
.author-info .role { color: rgba(255,255,255,.55); font-size: .82rem; }

/* ── CONTACT ── */
#contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 800;
  margin-bottom: 1rem; color: var(--text);
}
.contact-info p { color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; }
.contact-details { display: flex; flex-direction: column; gap: .85rem; }
.contact-row { display: flex; align-items: center; gap: .85rem; }
.contact-row .ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-row span { color: var(--gray-600); font-size: .95rem; }
.contact-row a { color: var(--blue-bright); text-decoration: none; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-body); font-size: .95rem;
  color: var(--text); background: var(--gray-50);
  transition: border-color .2s, box-shadow .2s;
  outline: none; width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.submit-btn {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark));
  color: var(--white); padding: .9rem 2rem;
  border: none; border-radius: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: all .25s;
  box-shadow: 0 4px 20px rgba(37,99,235,.35);
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,.45); }
.form-success {
  display: none; text-align: center; padding: 2rem;
  background: #d1fae5; border-radius: 12px; color: #065f46; font-weight: 600;
}

/* ── FOOTER ── */
footer {
  background: var(--gray-800); color: rgba(255,255,255,.7);
  padding: 60px 5% 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 2.5rem; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.footer-brand {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  color: var(--white); margin-bottom: .75rem;
}
.footer-brand span { color: var(--accent); }
.footer-desc { font-size: .9rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-col h4 {
  font-family: var(--font-display); font-weight: 700; color: var(--white);
  margin-bottom: 1rem; font-size: .95rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.6); text-decoration: none; font-size: .88rem; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem; text-align: center;
  font-size: .85rem; color: rgba(255,255,255,.4);
  max-width: 1200px; margin: 0 auto;
}

/* ── CHAT BUBBLE ── */
.chat-bubble {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), #059669);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; cursor: pointer;
  box-shadow: 0 6px 24px rgba(16,185,129,.4);
  transition: transform .2s; border: none; color: white;
}
.chat-bubble:hover { transform: scale(1.1); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 5%; }
  .hero-card { max-width: 460px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 60px 5%; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
  .stat .num { font-size: 1.5rem; }
}



:root{

--primary:#0a2f8f;
--secondary:#114cff;
--accent:#3ea6ff;
--yellow:#ffd439;
--dark:#07142e;
--light:#f5f8ff;
--white:#ffffff;
--text:#c7d2fe;

--shadow:0 20px 50px rgba(0,0,0,.18);

}

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:Arial,sans-serif;
background:var(--light);
overflow-x:hidden;
color:#111827;
line-height:1.7;
}

/* SCROLLBAR */

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#dbe7ff;
}

::-webkit-scrollbar-thumb{
background:linear-gradient(var(--primary),var(--secondary));
border-radius:50px;
}

/* CONTAINER */

.container{
width:90%;
max-width:1280px;
margin:auto;
}

/* =========================
HEADER
========================= */

.site-header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;

padding:24px 0;

background:rgba(7,20,46,.78);

backdrop-filter:blur(18px);

border-bottom:1px solid rgba(255,255,255,.08);

transition:.4s;

}

.site-header.scrolled{
padding:16px 0;
background:rgba(7,20,46,.95);
box-shadow:0 10px 35px rgba(0,0,0,.25);
}

.site-header .container{
display:flex;
align-items:center;
justify-content:space-between;
}

.logo{
font-size:42px;
font-weight:900;
color:var(--white);
text-decoration:none;
letter-spacing:-1px;
}

nav{
display:flex;
gap:35px;
}

nav a{

color:var(--white);
text-decoration:none;
font-size:17px;
font-weight:700;
position:relative;
transition:.3s;

}

nav a::after{

content:'';
position:absolute;
left:0;
bottom:-8px;
width:0%;
height:2px;
background:var(--yellow);
transition:.4s;

}

nav a:hover{
color:var(--yellow);
}

nav a:hover::after{
width:100%;
}

/* =========================
HERO
========================= */

#home{

position:relative;

padding:100px 0 60px;

background:
linear-gradient(135deg,#04112b 0%,#0a2f8f 45%,#1358ff 100%);

overflow:hidden;

}

#home::before{

content:'';

position:absolute;

width:700px;
height:700px;

background:rgba(255,255,255,.06);

border-radius:50%;

top:-260px;
right:-200px;

animation:float 10s infinite linear;

}

#home::after{

content:'';

position:absolute;

width:500px;
height:500px;

background:rgba(255,255,255,.05);

border-radius:50%;

bottom:-180px;
left:-150px;

animation:float2 12s infinite linear;

}

@keyframes float{

0%{
transform:translateY(0px) rotate(0deg);
}

50%{
transform:translateY(40px) rotate(180deg);
}

100%{
transform:translateY(0px) rotate(360deg);
}

}

@keyframes float2{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-40px);
}

100%{
transform:translateY(0px);
}

}

.hero-inner{

display:grid;
grid-template-columns:1.1fr .9fr;
gap:80px;

align-items:center;

position:relative;
z-index:2;

}

.section-label{

display:inline-block;

padding:10px 18px;

background:rgba(255,255,255,.12);

border:1px solid rgba(255,255,255,.1);

backdrop-filter:blur(10px);

border-radius:50px;

font-size:14px;
font-weight:700;

color:#b6d6ff;

margin-bottom:25px;

}

.hero-text h1{

font-size:88px;
line-height:1.05;

font-weight:900;

color:var(--white);

margin-bottom:30px;

letter-spacing:-3px;

}

.hero-text h1 span{
color:var(--yellow);
}

.hero-text p{

font-size:22px;

color:var(--text);

max-width:760px;

margin-bottom:40px;

}

.hero-btns{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.btn-primary,
.btn-outline{

padding:18px 36px;

border-radius:16px;

text-decoration:none;

font-size:18px;
font-weight:800;

transition:.4s;

display:inline-flex;
align-items:center;
justify-content:center;

}

.btn-primary{

background:var(--yellow);

color:#000;

box-shadow:0 12px 30px rgba(255,212,57,.3);

}

.btn-primary:hover{

transform:translateY(-7px) scale(1.03);

}

.btn-outline{

border:2px solid rgba(255,255,255,.35);

color:var(--white);

backdrop-filter:blur(10px);

}

.btn-outline:hover{

background:var(--white);

color:var(--primary);

}

/* HERO STATS */

.hero-stats{

display:flex;
gap:22px;

margin-top:50px;

flex-wrap:wrap;

}

.stat{

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(14px);

padding:25px 30px;

border-radius:24px;

min-width:180px;

transition:.4s;

}

.stat:hover{
transform:translateY(-8px);
}

.num{

font-size:42px;
font-weight:900;
color:var(--yellow);

margin-bottom:8px;

}

.label{
color:#dbeafe;
font-size:15px;
}

/* HERO CARD */

.hero-card{

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.12);

backdrop-filter:blur(20px);

padding:45px;

border-radius:35px;

box-shadow:var(--shadow);

animation:updown 4s infinite ease-in-out;

}

@keyframes updown{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-18px);
}

100%{
transform:translateY(0px);
}

}

.hero-card-title{

font-size:30px;
font-weight:900;

color:var(--white);

margin-bottom:35px;

}

.feature-list{
list-style:none;
display:flex;
flex-direction:column;
gap:22px;
}

.feature-list li{

display:flex;
align-items:center;
gap:18px;

font-size:18px;

color:#e5ecff;

font-weight:600;

}

.icon{

width:52px;
height:52px;

display:flex;
align-items:center;
justify-content:center;

background:rgba(255,255,255,.12);

border-radius:18px;

font-size:22px;

}

/* =========================
SECTION COMMON
========================= */

section{
position:relative;
}

.section-head{
margin-bottom:70px;
}

.center{
text-align:center;
}

.section-title{

font-size:62px;
font-weight:900;

line-height:1.1;

margin-bottom:18px;

color:#09152d;

letter-spacing:-2px;

}

.section-sub{

font-size:21px;

max-width:850px;

margin:auto;

color:#667085;

}

/* =========================
FEATURES
========================= */

#features{

padding:130px 0;

background:var(--white);

}

.feature-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.feature-box{

background:#f7faff;

padding:45px 35px;

border-radius:30px;

transition:.4s;

border:1px solid #e8efff;

position:relative;

overflow:hidden;

}

.feature-box::before{

content:'';

position:absolute;

width:140px;
height:140px;

background:linear-gradient(var(--accent),transparent);

border-radius:50%;

top:-70px;
right:-70px;

opacity:.25;

}

.feature-box:hover{

transform:translateY(-12px);

box-shadow:0 25px 50px rgba(0,0,0,.08);

}

.feature-icon{

font-size:60px;

margin-bottom:22px;

}

.feature-box h3{

font-size:30px;
font-weight:900;

margin-bottom:15px;

}

.feature-box p{

color:#667085;

font-size:17px;

}

/* =========================
SUCCESS SECTION
========================= */

#success{

padding:140px 0;

background:
linear-gradient(135deg,#07142e,#0c2d79);

color:var(--white);

overflow:hidden;

}

.success-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:70px;

align-items:center;

}

.success-item{

background:rgba(255,255,255,.06);

padding:30px;

border-radius:24px;

margin-bottom:20px;

backdrop-filter:blur(12px);

}

.success-item h3{

font-size:52px;

color:var(--yellow);

margin-bottom:10px;

}

.success-card{

background:rgba(255,255,255,.08);

padding:55px;

border-radius:35px;

backdrop-filter:blur(16px);

border:1px solid rgba(255,255,255,.1);

}

.success-card h3{

font-size:38px;

margin-bottom:30px;

}

.success-card ul{

list-style:none;

display:flex;
flex-direction:column;
gap:20px;

}

.success-card li{

font-size:18px;

color:#dbeafe;

}

/* =========================
PROCESS
========================= */

#process{

padding:130px 0;

background:var(--white);

}

.process-steps{

display:grid;
grid-template-columns:repeat(4,1fr);

gap:30px;

}

.step{

background:#f8fbff;

padding:40px;

border-radius:28px;

position:relative;

transition:.4s;

border:1px solid #edf2ff;

}

.step:hover{
transform:translateY(-12px);
}

.step-num{

width:70px;
height:70px;

display:flex;
align-items:center;
justify-content:center;

background:linear-gradient(var(--primary),var(--secondary));

border-radius:22px;

color:var(--white);

font-size:28px;
font-weight:900;

margin-bottom:25px;

}

.step h4{

font-size:30px;

margin-bottom:15px;

}

.step p{

color:#667085;

}

/* =========================
TESTIMONIALS
========================= */

#testimonials{

padding:140px 0;

background:#07142e;

}

.testimonials-grid{

display:grid;
grid-template-columns:repeat(3,1fr);

gap:35px;

}

.testi-card{

background:rgba(255,255,255,.06);

padding:40px;

border-radius:30px;

backdrop-filter:blur(14px);

border:1px solid rgba(255,255,255,.08);

transition:.4s;

}

.testi-card:hover{
transform:translateY(-10px);
}

.stars{

font-size:26px;

margin-bottom:22px;

color:var(--yellow);

}

.testi-text{

color:#dbeafe;

font-size:17px;

margin-bottom:30px;

}

.testi-author{

display:flex;
align-items:center;
gap:18px;

}

.avatar{

width:62px;
height:62px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

background:linear-gradient(var(--primary),var(--secondary));

color:var(--white);

font-weight:900;

}

.name{

color:var(--white);

font-weight:800;

}

.role{

color:#9fb6e9;

font-size:14px;

}

/* =========================
CONSULT
========================= */

#consultation{

padding:140px 0;

background:
linear-gradient(135deg,#0a2f8f,#1358ff);

text-align:center;

color:var(--white);

overflow:hidden;

}

.consult-box{

position:relative;
z-index:2;

}

.consult-box h2{

font-size:72px;

font-weight:900;

margin-bottom:25px;

}

.consult-box p{

font-size:24px;

color:#dbeafe;

max-width:900px;

margin:auto;

margin-bottom:45px;

}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

.hero-inner,
.success-grid{

grid-template-columns:1fr;

}

.feature-grid,
.process-steps,
.testimonials-grid{

grid-template-columns:1fr 1fr;

}

.hero-text h1{
font-size:64px;
}

}

@media(max-width:768px){



.hero-text h1{
font-size:48px;
}

.section-title{
font-size:42px;
}

.feature-grid,
.process-steps,
.testimonials-grid{

grid-template-columns:1fr;

}

.consult-box h2{
font-size:42px;
}

.hero-stats{
flex-direction:column;
}

.logo{
font-size:30px;
}

}

/* SERVICE PAGE */

.service-page{

padding:180px 0 120px;

background:#f5f8ff;

min-height:100vh;

}

.page-hero{

text-align:center;

margin-bottom:70px;

}

.page-hero h1{

font-size:72px;

font-weight:900;

margin-bottom:20px;

color:#07142e;

}

.page-hero p{

font-size:22px;

color:#667085;

max-width:850px;

margin:auto;

}

.service-content{

background:#fff;

padding:60px;

border-radius:35px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

font-size:19px;

line-height:1.9;

}

.service-content h2{

font-size:42px;

margin:40px 0 20px;

}

.service-content ul{

padding-left:25px;

margin:25px 0;

}

.service-content li{

margin-bottom:12px;

}

@media(max-width:768px){

.page-hero h1{
font-size:42px;
}

.service-content{
padding:30px;
}

}

/* =========================
SERVICE PAGES PREMIUM CSS
========================= */

.service-page{
    padding:120px 7%;
    background:#f4f7ff;
    min-height:100vh;
    position:relative;
    overflow:hidden;
}

/* BACKGROUND EFFECT */

.service-page::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,102,255,0.08);
    border-radius:50%;
    top:-200px;
    right:-150px;
    filter:blur(20px);
    animation:floatbg 8s ease-in-out infinite;
}

@keyframes floatbg{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(40px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* HERO */

.page-hero{
    text-align:center;
    margin-bottom:70px;
    animation:fadeUp 1s ease;
}

.page-hero h1{
    font-size:75px;
    color:#001845;
    margin-bottom:20px;
    font-weight:800;
    line-height:1.1;
    text-transform:uppercase;
}

.page-hero p{
    font-size:24px;
    color:#4d648d;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

/* CONTENT CARD */

.service-content{
    background:#fff;
    padding:70px;
    border-radius:30px;
    box-shadow:0 15px 60px rgba(0,0,0,0.08);
    position:relative;
    overflow:hidden;
    animation:fadeUp 1.2s ease;
}

.service-content::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:8px;
    background:linear-gradient(90deg,#004cff,#00a2ff);
}

/* HEADINGS */

.service-content h2{
    font-size:48px;
    margin-bottom:30px;
    color:#001845;
    font-weight:800;
    position:relative;
}

.service-content h2::after{
    content:'';
    width:80px;
    height:5px;
    background:#005eff;
    position:absolute;
    left:0;
    bottom:-12px;
    border-radius:20px;
}

/* TEXT */

.service-content p{
    font-size:22px;
    color:#4c5d77;
    line-height:2;
    margin-bottom:35px;
}

/* FEATURES */

.service-content ul{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:40px;
}

.service-content ul li{
    list-style:none;
    background:#f6f9ff;
    padding:25px;
    border-radius:20px;
    font-size:19px;
    color:#00235a;
    font-weight:600;
    transition:.4s;
    border:2px solid transparent;
    position:relative;
    overflow:hidden;
}

/* HOVER EFFECT */

.service-content ul li:hover{
    transform:translateY(-10px);
    background:#005eff;
    color:#fff;
    border-color:#005eff;
    box-shadow:0 15px 30px rgba(0,94,255,0.25);
}

/* ICON STYLE */

.service-content ul li::before{
    content:'✓';
    display:inline-block;
    margin-right:12px;
    font-weight:bold;
    color:#00b7ff;
}

/* BUTTON */

.service-btn{
    display:inline-block;
    margin-top:50px;
    padding:18px 40px;
    background:linear-gradient(90deg,#005eff,#00a2ff);
    color:#fff;
    border-radius:60px;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,94,255,0.25);
}

.service-btn:hover{
    transform:translateY(-5px) scale(1.05);
}

/* ANIMATIONS */

@keyframes fadeUp{
    0%{
        opacity:0;
        transform:translateY(60px);
    }
    100%{
        opacity:1;
        transform:translateY(0);
    }
}

/* RESPONSIVE */

@media(max-width:991px){

.page-hero h1{
    font-size:55px;
}

.service-content{
    padding:45px;
}

.service-content h2{
    font-size:38px;
}

.service-content p{
    font-size:19px;
}

}

@media(max-width:768px){

.page-hero h1{
    font-size:42px;
}

.page-hero p{
    font-size:18px;
}

.service-content{
    padding:30px;
}

.service-content h2{
    font-size:30px;
}

.service-content p{
    font-size:17px;
}

.service-content ul{
    grid-template-columns:1fr;
}

}

/* MOBILE HERO SPACE FIX */

@media(max-width:768px){

#home{

min-height:auto !important;

padding-top:30px !important;
padding-bottom:30px !important;

display:block !important;

}

.hero-inner{
gap:35px !important;
}

.hero-text h1{
font-size:52px !important;
line-height:1.05 !important;
}

.hero-card{
padding:28px !important;
}

.hero-stats{
margin-top:25px !important;
}

.stat{
min-width:100% !important;
}

#home::before{
width:320px !important;
height:320px !important;
top:-120px !important;
right:-120px !important;
}

#home::after{
width:240px !important;
height:240px !important;
bottom:-80px !important;
left:-100px !important;
}

.chat-bubble{
bottom:18px !important;
right:18px !important;
width:52px !important;
height:52px !important;
}

}

/* MOBILE NAV FIX */

.hamburger{
display:none;
flex-direction:column;
gap:5px;
background:none;
border:none;
cursor:pointer;
z-index:99999;
}

.hamburger span{
width:26px;
height:3px;
background:#fff;
border-radius:10px;
display:block;
}

.mobile-nav{
position:fixed;
top:70px;
left:-100%;
width:100%;
height:100vh;
background:#04112b;
display:flex;
flex-direction:column;
padding:40px 30px;
gap:25px;
transition:0.4s ease;
z-index:9999;
}

.mobile-nav.active{
left:0;
}

.mobile-nav a{
color:#fff;
font-size:22px;
font-weight:700;
text-decoration:none;
}

@media(max-width:768px){

.nav-links{
display:none !important;
}

.hamburger{
display:flex !important;
}

#navbar{
padding:18px 20px !important;
}

.nav-brand{
font-size:22px !important;
line-height:1.3;
max-width:220px;
}

}

/* MOBILE HAMBURGER FIX */

.hamburger{
display:none;
flex-direction:column;
justify-content:center;
align-items:center;
gap:5px;
background:none;
border:none;
cursor:pointer;
z-index:9999;
}

.hamburger span{
display:block;
width:26px;
height:3px;
background:#ffffff;
border-radius:10px;
transition:0.3s;
}

/* MOBILE */

@media(max-width:768px){

.hamburger{
display:flex;
}

.nav-links{
display:none;
}

#navbar{
padding:18px 20px;
}

}


.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  z-index: 9999;
}
.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,0.55);
}
</style>

<a class="whatsapp-btn"
   href="https://wa.me/919999999999"
   target="_blank"
   title="Chat on WhatsApp"
   aria-label="Chat on WhatsApp">
  <svg xmlns="http://www.w3.org/2000/svg"
       viewBox="0 0 32 32" width="34" height="34" fill="none">
    <path d="M16 2C8.268 2 2 8.268 2 16c0 2.478.674
      4.797 1.848 6.788L2 30l7.418-1.82A13.94 13.94
      0 0 0 16 30c7.732 0 14-6.268 14-14S23.732 2 16
      2z" fill="#25D366"/>
    <path d="M16 4.5C9.648 4.5 4.5 9.648 4.5 16c0
      2.19.614 4.238 1.682 5.977L4.5 27.5l5.668-1.657
      A11.46 11.46 0 0 0 16 27.5c6.352 0
      11.5-5.148 11.5-11.5S22.352 4.5 16 4.5z"
      fill="white"/>
    <path d="M22.003 19.39c-.3-.15-1.773-.874-2.048
      -.974-.276-.1-.477-.15-.677.15-.2.3-.776.974
      -.951 1.174-.175.2-.35.225-.65.075-.3-.15
      -1.266-.466-2.411-1.487-.891-.794-1.492-1.775
      -1.667-2.074-.175-.3-.019-.462.132-.611.135
      -.134.3-.35.45-.524.15-.175.2-.3.3-.5.1-.2
      .05-.374-.025-.524-.075-.15-.677-1.632-.927
      -2.232-.244-.586-.492-.506-.677-.516l-.576-.01
      c-.2 0-.526.075-.801.374-.276.3-1.052 1.027
      -1.052 2.507s1.077 2.907 1.227 3.107c.15.2
      2.12 3.234 5.136 4.536.717.31 1.277.495
      1.713.633.72.228 1.376.196 1.894.119.578
      -.086 1.773-.725 2.023-1.424.25-.7.25-1.3
      .175-1.424-.073-.124-.273-.2-.573-.35z"
      fill="#25D366"/>
  </svg>
</a>