/* ========== RESET ========== */
* { box-sizing: border-box; margin:0; padding:0; }
html,body { height:100%; }
body {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  color:#122;
  background:#f4f7fb;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ========== LAYOUT HELPERS ========== */
.container { width:92%; max-width:1200px; margin:0 auto; }
.section { padding:60px 0; }

/* ========== FAQ SECTION (MODERN ACCORDION) ========== */
.faq-section {
    background: #f4f6f8;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: 0.3s;
    border: 1px solid transparent;
}

.faq-item:hover {
    border-color: #0052D4; /* Border appears on hover */
}

.faq-q {
    width: 100%;
    background: #fff;
    border: 0;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #0f1016;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-q:hover {
    background: #f9faff;
    color: #0052D4;
}

.q-mark {
    font-size: 20px;
    font-weight: bold;
    color: #0052D4;
    background: #eef2ff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-a {
    padding: 0 20px;
    max-height: 0; /* Hidden by default - needs JS to open, or keep simple hover */
    overflow: hidden;
    color: #555;
    line-height: 1.6;
    background: #fff;
    transition: max-height 0.3s ease, padding 0.3s ease;
}


/* ========== RESPONSIVE ========== */
@media (max-width:1000px) {
  .hero-content h1 { font-size:48px; }
  .two-col { grid-template-columns:1fr; }
  .contact-section { padding:36px 0; }
}
@media (max-width:700px) {
  .nav-list { display:none; position:absolute; top:62px; right:10px; background:rgba(4,10,16,0.98); padding:12px; border-radius:10px; flex-direction:column; gap:6px; }
  .nav-list.open { display:flex; }
  .nav-toggle { display:inline-block; }
  .hero { height:520px; }
  .hero-content { left:6%; right:6%; max-width:100%; }
  .hero-content h1 { font-size:36px; }
  .service-grid { grid-template-columns: 1fr; }
  .testimonial { max-width:100%; }
  .hero-trust { display:none; }
}

/* subtle focus styles for accessibility */
a:focus, button:focus, input:focus, textarea:focus { outline:3px solid rgba(47,156,255,0.18); outline-offset:2px; }

/* small animation on load */
@keyframes floatIn { from { opacity:0; transform:translateY(8px);} to {opacity:1; transform:none;} }
.section-title, .service-card, .testimonial { animation: floatIn .6s ease both; }

/* --- RESET & FONTS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif; /* Clean Font like image */
}

body {
    background-color: #f8f9fc; /* Very light grey/white background */
    color: #333;
}


/* --- GRID LAYOUT --- */
.container {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Space between rows */
}

/* TOP ROW: 3 Cards */
.row-top {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* BOTTOM ROW: 2 Cards */
.row-bottom {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* --- CARD DESIGN (Matching Image) --- */
.card {
    background: #ffffff;
    width: 300px; /* Fixed width for uniform look */
    padding: 40px 25px;
    border-radius: 15px; /* Soft Rounded Corners */
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05); /* Very soft premium shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-10px); /* Lift effect */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

/* Icon Area */
.card-icon {
    height: 60px;
    margin-bottom: 25px;
}

.card-icon img {
    height: 100%;
    object-fit: contain;
}

/* Card Text */
.card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2b49;
    margin-bottom: 15px;
    min-height: 45px; /* Aligns titles if lengths differ */
}

.card p {
    font-size: 0.9rem;
    color: #7d879c; /* Soft Grey Text */
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Button Link */
.btn-details {
    color: #6c5ce7; /* Purple color from image */
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-details:hover {
    color: #4834d4;
    text-decoration: underline;
}

/* --- RESPONSIVE (Mobile) --- */
@media (max-width: 768px) {
    .row-top, .row-bottom {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        width: 100%;
        max-width: 350px;
    }
}

/* Responsive */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 800px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* for jig jag  */
/* --- 1. RESET & BASIC STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8f9fc;
    color: #333;
    overflow-x: hidden;
}

/* --- 2. HEADER SECTION --- */
.service-section {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.header-text {
    text-align: center;
    margin-bottom: 50px;
}

.header-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a2b49;
    text-transform: uppercase;
}

.header-text .highlight-green { color: #8cc63f; }

.underline {
    width: 60px;
    height: 4px;
    background-color: #00bcd4;
    margin: 15px auto;
    border-radius: 2px;
}

.header-text p {
    color: #6c757d;
    font-size: 1rem;
    margin-top: 15px;
}

/* --- 4. DETAILED ZIG-ZAG SECTION --- */
.details-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-top: 1px solid #eee;
}

/* Gap Control: Width 95% kar di hai taaki gap kam rahe */
.wide-container {
    width: 95%; 
    max-width: 1500px;
    margin: 0 auto;
}

/* Flexbox Row Setup */
.detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 40px; /* Content ke beech ka gap */
}

/* !!! MAGIC FIX FOR ZIG-ZAG !!! */
/* Jis row mein 'reverse' class hogi, wo Image ko Left aur Text ko Right kar dega */
.detail-row.reverse {
    flex-direction: row-reverse;
}

/* Text Styling */
.detail-text {
    flex: 1; /* Aadha space */
    padding: 0 20px;
}

.detail-text h3 {
    font-size: 2rem;
    color: #1a2b49;
    margin-bottom: 20px;
}

.detail-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Checklist Styling */
.check-list { list-style: none; padding: 0; }
.check-list li {
    font-size: 1rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}
.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #8cc63f;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Image Styling */
.detail-img {
    flex: 1; /* Aadha Space */
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.detail-img:hover img {
    transform: scale(1.03);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    /* Mobile pe gap thoda normal karte hain */
    .wide-container { width: 90%; }

    /* Mobile pe Reverse hata dete hain, sab ek line mein chahiye */
    .detail-row, .detail-row.reverse {
        flex-direction: column-reverse; /* Image upar, Text neeche */
        text-align: center;
        gap: 20px;
    }

    .detail-text { padding: 0; }
    .check-list li { text-align: left; display: inline-block; }
    .detail-img { height: 250px; width: 100%; }
}
/* ================= TESTIMONIAL SECTION STYLING ================= */

.testimonial-section {
    background-color: #f8fafc; /* Light clean background */
    padding: 100px 0;
}

/* --- Section Header --- */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
}

/* Gradient Text Fix */
.gradient-text {
    display: inline-block;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #2563eb; /* Fallback */
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* --- Grid Layout --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

/* --- Premium Card Design --- */
.testi-card-premium {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testi-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #2563eb;
}

/* --- Quote Decoration --- */
.quote-mark {
    font-family: serif;
    font-size: 5rem;
    color: rgba(37, 99, 235, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

/* --- Review Text --- */
.testi-text {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

/* --- Footer & Avatar --- */
.testi-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 25px;
}

.testi-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.testi-meta h4 {
    font-size: 1rem;
    color: #1e293b;
    margin: 0;
    font-weight: 700;
}

.testi-meta span {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

/* --- Mobile Fix --- */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testi-card-premium {
        padding: 30px;
    }
}

/* ================= HERO SECTION STYLING ================= */

/* ---------- Hero / Section ---------- */
.hero-premium{
  /* Dark neon background (matching the neon image) */
  background: radial-gradient(circle at 50% 45%,
    rgba(0,40,30,0.65) 0%,
    rgba(0,18,22,0.85) 40%,
    #02060a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: #d1fcd9; /* default lightish text */
  -webkit-font-smoothing:antialiased;
}

.container.hero-wrapper {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ---------- Typography ---------- */
.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  color: #e6fff0;
  margin: 0 0 18px 0;
  letter-spacing: -1px;
}

/* Neon gradient for INCLUDED (glowing feel) */
.highlight-green {
  display: inline-block;
  background-image: linear-gradient(90deg, #66ffb2 0%, #13f389 40%, #08f0b0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 6px 18px rgba(7,160,103,0.12);
}

/* Decorative underline */
.hero-underline {
  width: 100px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(102,255,178,0.9), rgba(8,240,176,0.9));
  margin: 18px 0 28px 0;
  box-shadow: 0 6px 28px rgba(0,200,120,0.08);
}

/* Paragraph */
.hero-desc {
  font-size: 1.05rem;
  color: rgba(200,255,225,0.9);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 28px;
}

/* ---------- Buttons ---------- */
.hero-buttons { display:flex; gap:14px; flex-wrap:wrap; }

.btn-hero-primary{
  background: linear-gradient(90deg, #0fa86a, #06d485);
  color: #002212;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(6,200,140,0.18);
  transition: transform .24s ease, box-shadow .24s ease;
}
.btn-hero-primary:hover{ transform: translateY(-4px); box-shadow: 0 18px 48px rgba(6,200,140,0.28); }

.btn-hero-outline{
  border: 2px solid rgba(160,255,200,0.18);
  color: rgba(200,255,225,0.95);
  padding: 10px 26px;
  border-radius: 999px;
  font-weight:700;
  text-decoration:none;
  background: transparent;
  transition: background .18s ease, color .18s ease;
}
.btn-hero-outline:hover{
  background: rgba(10,40,30,0.6);
  color: #cfffdf;
}

/* ---------- Image Column ---------- */
.hero-image{
  position: relative;
  display:flex;
  justify-content:center;
  align-items:center;
  min-height: 360px;
  pointer-events: none; /* decorative */
}

/* The neon glow behind the image — keeps glow but removes solid rectangle backdrop */
.img-backdrop{
  position: absolute;
  width: 90%;
  height: 90%;
  max-width: 980px;
  border-radius: 18px;
  /* create soft radial neon glow */
  background: radial-gradient(closest-side, rgba(8,230,150,0.18), rgba(6,120,90,0.06) 40%, transparent 60%);
  filter: blur(28px);
  transform: translateY(6px) scale(1);
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* If you want an extra ring/glow under the building (like in original), use pseudo element */
.hero-image::after{
  content: "";
  position:absolute;
  bottom: 18%;
  left:50%;
  transform: translateX(-50%);
  width: 48%;
  height: 10%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(8,255,160,0.28), rgba(8,200,130,0.08), transparent 60%);
  filter: blur(18px);
  z-index: 0;
}

/* The actual image (transparent PNG). Keep sharp lines, remove white border and current box-shadow */
.neon-img{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 780px;
  height: auto;
  display:block;
  border-radius: 12px; /* optional */
  border: none; /* remove white border */

  transform: translateY(0) rotate(-1deg);
  transition: transform .45s ease;
  image-rendering: auto;
  /* subtle neon outer-glow preserved visually via the backdrop */
}

/* Hover fine-tune on wider screens */
@media (hover: hover) and (min-width: 900px) {
  .hero-image:hover .neon-img{ transform: translateY(-6px) rotate(0deg) scale(1.01); }
}

/* ---------- Responsiveness ---------- */
@media (max-width: 900px){
  .container.hero-wrapper{ grid-template-columns: 1fr; gap: 36px; text-align:center; }
  .hero-image{ min-height: 300px; }
  .img-backdrop{ width: 100%; height: 80%; }
  .hero-image::after{ width: 72%; height: 8%; bottom: 14%; }
  .hero-text h1{ font-size: 2.4rem; }
  .hero-desc{ margin: 0 auto 18px; }
  .btn-hero-primary, .btn-hero-outline{ margin: 0 auto; }
}

/* Small devices */
.custom-shape-divider-bottom-1770981800 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1770981800 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 86px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1770981800 .shape-fill {
    fill: #FFFFFF;
}

.custom-shape-divider-top-1770981855 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1770981855 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 86px;
    transform: rotateY(180deg);
}

.custom-shape-divider-top-1770981855 .shape-fill {
    fill: #FFFFFF;
}
