:root {
  --primary: #1d4ed8;
  --primary-dark: #1e3a8a;
  --accent: #f97316;
  --bg-dark: #0f172a;
  --text: #1e293b;
  --text-light: #64748b;
  --radius: 2px; /* Strict 2px radius */
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Inter',system-ui,sans-serif;background:#f8fafc;color:var(--text);line-height:1.6;overflow-x:hidden;}
a{text-decoration:none;color:inherit}
button{cursor:pointer;border:none;background:none;font-family:inherit}
img{max-width:100%;display:block}
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:#f1f5f9}
::-webkit-scrollbar-thumb{background:var(--primary);border-radius:var(--radius)}

/* Advanced Animations */
@keyframes fadeInUp{from{opacity:0;transform:translateY(40px) scale(0.95)}to{opacity:1;transform:translateY(0) scale(1)}}
@keyframes scrollLeft{from{transform:translateX(0)}to{transform:translateX(-100%)}}
@keyframes glowPulse{0%{box-shadow:0 0 10px rgba(29,78,216,0.3)}50%{box-shadow:0 0 25px rgba(29,78,216,0.6)}100%{box-shadow:0 0 10px rgba(29,78,216,0.3)}}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}

/* SEAMLESS TOP BAR MARQUEE */
.top-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  position: relative;
  z-index: 100;
  display: flex;
}
.marquee-container {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.marquee-content {
  display: flex;
  flex-shrink: 0;
  white-space: nowrap;
  animation: scrollLeft 25s linear infinite;
}
.marquee-text {
  padding: 0 20px;
}
/* Separator style inside marquee */
.m-sep { color: #60a5fa; margin: 0 15px; }

/* Modern Glass Header */
.header{position:sticky;top:0;z-index:999;background:rgba(255,255,255,.85);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom:1px solid rgba(255,255,255,0.3);box-shadow:0 4px 30px rgba(0,0,0,.05)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 20px;max-width:1200px;margin:0 auto}
.logo{display:flex;align-items:center;gap:12px;}
.logo-icon{width:46px;height:46px;border-radius:var(--radius);background:linear-gradient(135deg,var(--primary-dark),var(--primary));display:flex;align-items:center;justify-content:center;box-shadow:0 4px 15px rgba(29,78,216,.3)}
.logo-icon svg{width:24px;height:24px;color:#fff;stroke:#fff;fill:none;stroke-width:2;}
.logo-text{line-height:1.2}
.logo-name{font-size:18px;font-weight:900;color:var(--primary-dark);letter-spacing:-0.5px;display:block}
.logo-tag{font-size:10px;font-weight:800;color:var(--accent);letter-spacing:2px;text-transform:uppercase;display:block}

/* Header Buttons */
.header-right{display:flex;align-items:center;gap:16px}
.call-btn{display:flex;align-items:center;gap:8px;background:var(--primary);color:#fff;padding:12px 24px;border-radius:var(--radius);font-size:14px;font-weight:700;transition:all .3s;position:relative;overflow:hidden;}
.call-btn::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,0.2),transparent);transition:all .5s;}
.call-btn:hover::before{left:100%}
.call-btn:hover{transform:translateY(-2px);box-shadow:0 10px 20px rgba(29,78,216,.3)}

/* Animated Hamburger Menu */
.menu-toggle{display:flex;flex-direction:column;gap:5px;padding:10px;cursor:pointer;background:#f1f5f9;border-radius:var(--radius);transition:all .3s}
.menu-toggle:hover{background:#e2e8f0}
.menu-toggle span{width:24px;height:2px;background:var(--primary-dark);border-radius:var(--radius);transition:all .3s cubic-bezier(0.68,-0.55,0.265,1.55)}
.menu-toggle.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.menu-toggle.active span:nth-child(2){opacity:0}
.menu-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* Sidebar Grid Layout */
.nav-overlay{position:fixed;inset:0;background:rgba(15,23,42,.7);backdrop-filter:blur(4px);z-index:1000;opacity:0;visibility:hidden;transition:all .3s}
.nav-overlay.active{opacity:1;visibility:visible}
.side-nav{position:fixed;top:0;right:-350px;width:320px;max-width:85vw;height:100%;background:#fff;z-index:1001;transition:right .4s cubic-bezier(0.16,1,0.3,1);display:flex;flex-direction:column;border-left:1px solid rgba(0,0,0,0.05);}
.side-nav.active{right:0;box-shadow:-20px 0 50px rgba(0,0,0,.15)}
.side-nav-header{padding:24px;border-bottom:1px solid #e2e8f0;display:flex;justify-content:space-between;align-items:center;background:#f8fafc;}
.side-nav-header h3{font-size:18px;font-weight:800;color:var(--primary-dark);}
.side-nav-close{background:#e2e8f0;width:32px;height:32px;display:flex;align-items:center;justify-content:center;border-radius:var(--radius);font-weight:bold;cursor:pointer;transition:all .2s;}
.side-nav-close:hover{background:#ef4444;color:#fff;}
.side-nav-body{padding:20px;overflow-y:auto;flex:1;}
.nav-link{display:flex;align-items:center;gap:12px;padding:14px 16px;font-size:15px;font-weight:600;color:#475569;border-radius:var(--radius);transition:all .2s;margin-bottom:8px;border:1px solid transparent;}
.nav-link:hover{background:#f8fafc;color:var(--primary);border-color:#e2e8f0;transform:translateX(5px);}
.nav-link.active{background:var(--primary);color:#fff;}
.city-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:10px;}
.city-link{padding:10px;font-size:13px;font-weight:600;text-align:center;border:1px solid #e2e8f0;border-radius:var(--radius);color:#64748b;transition:all .2s;}
.city-link:hover{border-color:var(--primary);color:var(--primary);background:#eff6ff;}

/* ===== HERO WITH 3D JS PARTICLES ===== */
.hero{position:relative;background:var(--bg-dark);color:#fff;padding:80px 20px 100px;overflow:hidden;display:flex;align-items:center;justify-content:center;min-height:80vh;}
#canvas-particles{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;opacity:0.6;}
.hero::after{content:'';position:absolute;inset:0;background:radial-gradient(circle at 50% 50%, rgba(29,78,216,0.2) 0%, rgba(15,23,42,1) 100%);z-index:2;}
.hero-inner{position:relative;z-index:3;max-width:900px;width:100%;text-align:center;display:flex;flex-direction:column;align-items:center;}
.live-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:var(--radius);padding:8px 20px;font-size:13px;font-weight:600;backdrop-filter:blur(10px);margin-bottom:24px;animation:fadeInUp 0.8s ease backwards;}
.dot-green{width:8px;height:8px;border-radius:var(--radius);background:#4ade80;box-shadow:0 0 10px #4ade80;animation:glowPulse 2s infinite;}
.hero h1{font-size:clamp(32px,5vw,64px);font-weight:900;line-height:1.15;margin-bottom:16px;letter-spacing:-1px;animation:fadeInUp 1s ease 0.2s backwards;}
.hero h1 span{background:linear-gradient(135deg,#60a5fa,#3b82f6);-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
.hero p{font-size:clamp(14px,2vw,18px);color:#94a3b8;max-width:700px;margin:0 auto 36px;animation:fadeInUp 1s ease 0.4s backwards;}

/* 4-COLUMN COMPACT QUICK ICONS GRID */
.quick-icons-grid{display:grid;grid-template-columns:repeat(4, 1fr);gap:20px;width:100%;max-width:800px;margin:0 auto;animation:fadeInUp 1s ease 0.6s backwards;perspective:1000px;}
.tilt-card{position:relative;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);border-radius:var(--radius);padding:24px 12px;text-align:center;cursor:pointer;backdrop-filter:blur(12px);transform-style:preserve-3d;transition:border-color 0.3s, background 0.3s;}
.tilt-card:hover{border-color:rgba(59,130,246,0.6);background:rgba(255,255,255,0.08);}
.tilt-icon{font-size:36px;margin-bottom:12px;display:inline-block;transform:translateZ(20px);text-shadow:0 10px 20px rgba(0,0,0,0.5);}
.tilt-title{font-size:14px;font-weight:700;color:#f8fafc;transform:translateZ(15px);letter-spacing:0.2px;line-height:1.2;}

/* ===== STATS GRID WITH COUNTER ===== */
.stats{background:#fff;border-bottom:1px solid #e2e8f0;position:relative;z-index:10;}
.stats-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);padding:30px 20px;gap:20px}
.stat-item{text-align:center;padding:20px;background:#f8fafc;border:1px solid #e2e8f0;border-radius:var(--radius);transition:all .3s;}
.stat-item:hover{background:#fff;box-shadow:0 10px 30px rgba(0,0,0,0.05);border-color:var(--primary);transform:translateY(-5px);}
.stat-num{font-size:clamp(24px,3vw,36px);font-weight:900;color:var(--primary);letter-spacing:-1px;}
.stat-label{font-size:13px;color:#64748b;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-top:5px}

/* ===== ULTRA-COMPACT CONATCT US CSS ===== */
:root { --p-blue: #2563eb; --p-dark: #0f172a; --text-l: #64748b; --radius: 2px; }
.advanced-contact { padding: 20px 15px; background: #eff6ff; position: relative; overflow: hidden; }
.advanced-contact::before { content: ''; position: absolute; top: -30px; right: -30px; width: 150px; height: 150px; border-radius: 50%; background: rgba(29, 78, 216, 0.05); pointer-events: none; }
.contact-container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 15px; }
.section-header h2 { font-size: 18px; font-weight: 800; color: var(--p-dark); margin: 0; text-transform: uppercase; }
.section-header p { color: var(--text-l); font-size: 11px; margin-top: 2px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 15px; align-items: stretch; }
.contact-info-card { background: var(--p-dark); color: #fff; padding: 15px 20px; border-radius: var(--radius); box-shadow: 0 5px 15px rgba(29, 78, 216, 0.15); display: flex; flex-direction: column; justify-content: center; }
.contact-info-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 5px; }
.contact-info-card p { color: rgba(255, 255, 255, 0.7); margin-bottom: 10px; font-size: 11px; }
.info-item { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.info-icon { width: 28px; height: 28px; background: rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; border-radius: var(--radius); }
.info-icon svg { width: 14px; height: 14px; fill: #fff; }
.info-text h4 { font-size: 9px; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; margin: 0; }
.info-text p, .info-text a { font-size: 12px; font-weight: 600; color: #fff; text-decoration: none; }
.contact-form-card { background: #fff; padding: 15px 20px; border-radius: var(--radius); border: 1px solid #e2e8f0; }
.form-control { width: 100%; padding: 6px 10px; margin-bottom: 8px; border: 1px solid #cbd5e1; border-radius: var(--radius); font-size: 12px; background: #f8fafc; }
textarea.form-control { height: 45px; resize: none; }
.submit-btn { background: var(--p-blue); color: white; padding: 8px; border: none; width: 100%; font-weight: 700; font-size: 12px; cursor: pointer; border-radius: var(--radius); text-transform: uppercase; }
@media(max-width:768px){ .contact-grid { grid-template-columns: 1fr; gap: 10px; } .advanced-contact { padding: 20px 10px; } }

/* Floating Label Inputs */
.input-group{position:relative;margin-bottom:20px;}
.floating-input{width:100%;padding:16px 14px 10px;border:1px solid #cbd5e1;border-radius:var(--radius);font-family:inherit;font-size:15px;color:var(--text);outline:none;transition:all 0.2s;background:#fff;}
.floating-label{position:absolute;left:14px;top:14px;color:#94a3b8;font-size:15px;font-weight:500;transition:all 0.2s ease;pointer-events:none;background:#fff;padding:0 4px;}
.floating-input:focus, .floating-input:not(:placeholder-shown){border-color:var(--primary);box-shadow:0 0 0 3px rgba(29,78,216,0.1);}
.floating-input:focus ~ .floating-label, .floating-input:not(:placeholder-shown) ~ .floating-label{top:-10px;font-size:12px;color:var(--primary);font-weight:700;}
select.floating-input{padding-top:14px;padding-bottom:12px;cursor:pointer;}

.form-submit-btn{width:100%;background:var(--primary);color:#fff;padding:16px;font-size:16px;font-weight:800;border-radius:var(--radius);transition:all 0.3s;text-transform:uppercase;letter-spacing:1px;display:flex;align-items:center;justify-content:center;gap:10px;}
.form-submit-btn:hover{background:var(--primary-dark);box-shadow:0 10px 25px rgba(29,78,216,0.3);transform:translateY(-2px);}

/* ===== ADVANCED POPUP MODAL ===== */
.custom-modal-overlay{position:fixed;inset:0;background:rgba(15,23,42,0.8);backdrop-filter:blur(8px);z-index:2000;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:all 0.4s cubic-bezier(0.16,1,0.3,1);}
.custom-modal-overlay.active{opacity:1;visibility:visible;}
.custom-modal{background:#fff;width:90%;max-width:450px;border-radius:var(--radius);box-shadow:0 30px 60px rgba(0,0,0,0.3);transform:scale(0.9) translateY(30px);transition:all 0.4s cubic-bezier(0.16,1,0.3,1);border-top:4px solid var(--primary);position:relative;overflow:hidden;}
.custom-modal-overlay.active .custom-modal{transform:scale(1) translateY(0);}
.custom-modal-header{padding:20px 24px;background:#f8fafc;border-bottom:1px solid #e2e8f0;display:flex;justify-content:space-between;align-items:center;}
.custom-modal-header h3{font-size:18px;font-weight:800;color:var(--primary-dark);}
.close-modal-btn{width:28px;height:28px;background:#e2e8f0;display:flex;align-items:center;justify-content:center;border-radius:var(--radius);color:#475569;font-weight:bold;transition:all 0.2s;}
.close-modal-btn:hover{background:#ef4444;color:#fff;}
.custom-modal-form{padding:24px;display:flex;flex-direction:column;}


/* WhatsApp Float */
.whatsapp-float{position:fixed;bottom:24px;right:24px;z-index:1000;width:60px;height:60px;background:#25d366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,.5);transition:transform .3s;animation:float 3s ease-in-out infinite}
.whatsapp-float:hover{transform:scale(1.1)}
.whatsapp-float svg{width:32px;height:32px;fill:#fff}

/* ===== ULTRA COMPACT MOBILE RESPONSIVE ===== */
@media(max-width:992px){
  .footer-grid{grid-template-columns:repeat(2,1fr);}
  .contact-grid{grid-template-columns:1fr;}
}
@media(max-width:768px){
  .header-right .call-btn span{display:none}
  .header-right .call-btn{padding:10px 14px}
  
  .hero{padding:50px 15px 70px; min-height:auto;}
  .quick-icons-grid{gap:8px;} 
  .tilt-card{padding:14px 6px; transform-style:flat;} 
  .tilt-card:hover{transform:none;}
  .tilt-icon{font-size:24px; margin-bottom:8px; transform:none; text-shadow:none;}
  .tilt-title{font-size:10px; transform:none; font-weight:600;}
  
  .stats-inner{grid-template-columns:repeat(2,1fr); gap:12px; padding:20px 15px;}
  .stat-item{padding:14px 8px;}
  .stat-num{font-size:20px;}
  .stat-label{font-size:11px;}
  
  .advanced-contact{padding:50px 15px;}
  .contact-info-card, .contact-form-card{padding:24px;}
  .footer-grid{grid-template-columns:1fr; gap:30px;}
  .footer-bottom{flex-direction:column; text-align:center;}
}






/* SERVICE CARDS  */
/* Service Section - Blue Theme & 2px Radius */
.uc-services-section {
    padding: 40px 10px; /* Reduced for better mobile fit */
    background: #f8fafc;
    font-family: 'Inter', system-ui, sans-serif;
}
.uc-container {
    max-width: 1350px;
    margin: 0 auto;
}
.uc-section-title {
    font-size: 18px; font-weight: 800; color: #1e293b; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.5px;
}

/* Animations */
@keyframes shakeIcon { 0%, 100% { transform: rotate(0deg); } 25% { transform: rotate(-15deg); } 50% { transform: rotate(15deg); } 75% { transform: rotate(-15deg); } }
@keyframes pulseIcon { 0% { transform: scale(1); } 50% { transform: scale(1.15); } 100% { transform: scale(1); } }
.anim-shake svg { animation: shakeIcon 1.5s ease-in-out infinite; }
.anim-pulse svg { animation: pulseIcon 1.5s ease-in-out infinite; }

/* Grid Layout */
.uc-service-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}

/* Service Card */
.uc-card {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 2px; padding: 16px; display: flex; gap: 16px; transition: box-shadow 0.2s;
}
.uc-card:hover { box-shadow: 0 4px 15px rgba(29, 78, 216, 0.1); }
.uc-card-left { flex: 1; display: flex; flex-direction: column; }

/* SEO H2 Title */
.uc-card-title { font-size: 16px; font-weight: 800; color: #0f2460; margin: 0 0 6px 0; line-height: 1.3; }

.uc-card-rating { font-size: 12px; color: #475569; font-weight: 600; margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.uc-card-rating svg { width: 14px; height: 14px; fill: #fbbf24; }
.uc-card-price { font-size: 15px; font-weight: 700; color: #16a34a; margin-bottom: 8px; }
.uc-card-tag { display: inline-block; font-size: 10px; padding: 3px 8px; background: #eff6ff; color: #1d4ed8; border-radius: 2px; margin-bottom: 10px; font-weight: 600; align-self: flex-start; }
.uc-card-desc { font-size: 12px; color: #64748b; line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.uc-view-details { font-size: 13px; color: #1d4ed8; font-weight: 700; cursor: pointer; margin-top: auto; text-decoration: underline; background: none; border: none; padding: 0; text-align: left; }

/* Right Side Buttons */
.uc-card-right { width: 100px; display: flex; flex-direction: column; gap: 8px; }
.uc-card-img { width: 100%; height: 75px; background: #f1f5f9; border-radius: 2px; object-fit: cover; }
.uc-btn-wa, .uc-btn-call { width: 100%; padding: 6px; color: #fff; border: none; border-radius: 2px; font-size: 11px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px; }
.uc-btn-wa { background: #25D366; }
.uc-btn-call { background: #1d4ed8; }

/* --- Advanced Popup Styling --- */
.uc-modal-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 10000; align-items: center; justify-content: center; padding: 10px;
}
.uc-modal-overlay.active { display: flex; }
.uc-modal {
    background: #fff; width: 100%; max-width: 650px; border-radius: 2px; max-height: 90vh; display: flex; flex-direction: column; position: relative; border: 2px solid #1d4ed8;
}
.uc-modal-close {
    position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; background: #fff; border: 1px solid #ddd; border-radius: 2px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10;
}
.uc-modal-content { overflow-y: auto; }
.uc-modal-hero-img { width: 100%; height: 200px; object-fit: cover; border-bottom: 1px solid #e2e8f0; }
.uc-modal-body { padding: 24px; }

/* Blog Formatting in Popup */
.blog-content h3 { font-size: 20px; color: #0f2460; font-weight: 800; margin-bottom: 10px; border-left: 4px solid #1d4ed8; padding-left: 10px; }
.blog-content h4 { font-size: 16px; color: #1d4ed8; margin: 20px 0 10px; font-weight: 800; background: #eff6ff; padding: 8px; }
.blog-content p { font-size: 14px; color: #475569; line-height: 1.8; margin-bottom: 15px; text-align: justify; }
.blog-content strong { color: #1e293b; }

/* Price Table */
.uc-cost-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 13.5px; }
.uc-cost-table th, .uc-cost-table td { border: 1px solid #e2e8f0; padding: 12px; text-align: left; }
.uc-cost-table th { background: #0f2460; color: #fff; }

/* Popup Side-by-Side Footer */
.uc-modal-footer {
    padding: 16px 20px; border-top: 1px solid #e2e8f0; display: flex; gap: 10px; background: #fff;
}
.btn-footer { flex: 1; padding: 12px; border-radius: 2px; border: none; font-size: 14px; font-weight: 800; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; }

/* --- Mobile Fixes --- */
@media (max-width: 600px) {
    .uc-services-section { padding: 20px 5px; }
    .uc-container { max-width: 100%; }
    .uc-service-grid { grid-template-columns: 1fr; gap: 12px; }
    .uc-card-right { width: 90px; }
    .uc-modal-body { padding: 15px; }
    /* Chhota font for mobile popup */
    .blog-content h3 { font-size: 17px; }
    .blog-content h4 { font-size: 14px; }
    .blog-content p { font-size: 13px; line-height: 1.6; }
    .uc-modal-footer { padding: 10px; gap: 8px; }
    .btn-footer { font-size: 12px; padding: 10px; }
}



/* ABOUT US START */
  /* Base Container - Reduced Padding for Laptop */
  .canvas-pro-about {
    padding: 60px 20px; 
    background: #ffffff;
    position: relative;
    overflow: hidden;
  }
  
  /* Animated Background Blobs */
  .blob-1, .blob-2 {
    position: absolute;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
    animation: blob-float 8s infinite alternate ease-in-out;
  }
  .blob-1 { top: -100px; left: -100px; width: 300px; height: 300px; background: var(--primary); }
  .blob-2 { bottom: -100px; right: -50px; width: 250px; height: 250px; background: #60a5fa; animation-delay: -4s; }

  @keyframes blob-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.2); }
  }

  .canvas-pro-container {
    max-width: 950px; /* Compact width specifically for Laptop */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Image takes less space now */
    gap: 40px; /* Reduced gap */
    align-items: center;
    position: relative;
    z-index: 2;
  }

  /* --- Image Composition with CCTV Scan Line --- */
  .pro-img-wrapper {
    position: relative;
    border-radius: 2px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(29, 78, 216, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  }
  
  .pro-img-inner {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
  }
  
  .pro-img-inner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
  }
  
  .pro-img-wrapper:hover .pro-img-inner img {
    transform: scale(1.05);
  }

  /* Advance CCTV Scan Line Animation */
  .pro-img-inner::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.8), transparent);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
    animation: cctv-scan 3s infinite linear;
    pointer-events: none;
  }

  @keyframes cctv-scan {
    0% { top: -10%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 110%; opacity: 0; }
  }

  /* Floating Animated Stats Badge - Scaled down */
  .pro-float-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px 20px;
    border-radius: 2px;
    box-shadow: 0 15px 30px rgba(29, 78, 216, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--primary);
    animation: float 4s ease-in-out infinite;
  }
  .pro-float-icon { width: 35px; height: 35px; background: #eff6ff; color: var(--primary); display: flex; justify-content: center; align-items: center; font-size: 16px; border-radius: 2px; }
  .pro-float-text strong { display: block; font-size: 18px; font-weight: 900; color: var(--text); line-height: 1; }
  .pro-float-text span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); }

  /* --- Text Column & Animations --- */
  .pro-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
    margin-bottom: 16px;
  }
  .pro-tag-badge .dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; animation: pulse-dot 1.5s infinite; }

  @keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(29,78,216,0.4); } 70% { box-shadow: 0 0 0 8px rgba(29,78,216,0); } 100% { box-shadow: 0 0 0 0 rgba(29,78,216,0); } }

  .canvas-pro-text h2 {
    font-size: clamp(24px, 3vw, 32px); /* Significantly smaller on laptop */
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }
  .canvas-pro-text h2 span {
    background: linear-gradient(135deg, var(--primary), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .canvas-pro-text p {
    font-size: 14px; /* Reduced text size */
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
  }

  /* Animated Features Grid - Compact */
  .pro-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px; /* Reduced gap */
    margin-bottom: 25px;
  }
  .pro-feat-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px; /* Smaller cards */
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
  }
  .pro-feat-card::before {
    content: ''; position: absolute; left: 0; top: 0; width: 3px; height: 100%; background: var(--primary); transform: scaleY(0); transition: transform 0.3s ease; transform-origin: bottom;
  }
  .pro-feat-card:hover { box-shadow: 0 8px 16px rgba(0,0,0,0.05); transform: translateY(-2px); }
  .pro-feat-card:hover::before { transform: scaleY(1); }
  .pro-feat-card:hover i { transform: scale(1.1); color: var(--primary); }

  .pro-feat-icon { width: 28px; flex-shrink: 0; margin-top: 2px; }
  .pro-feat-icon i { font-size: 16px; color: #94a3b8; transition: all 0.3s; }
  .pro-feat-content h4 { font-size: 13px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
  .pro-feat-content p { font-size: 11px; color: var(--text-light); line-height: 1.4; margin: 0; }

  /* JS Scroll Reveal Classes */
  .reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(0.5, 0, 0, 1); }
  .reveal.active { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.15s; }
  .reveal-delay-2 { transition-delay: 0.3s; }

  /* Responsive fixes - Keeps Mobile Looking Good */
  @media (max-width: 992px) {
    .canvas-pro-container { grid-template-columns: 1fr; gap: 40px; }
    .pro-img-wrapper { max-width: 450px; margin: 0 auto; }
  }
  @media (max-width: 768px) {
    .canvas-pro-about { padding: 50px 15px; }
    .pro-features-grid { grid-template-columns: 1fr; gap: 12px; }
    .pro-float-badge { right: 5px; bottom: -10px; padding: 12px; }
    .canvas-pro-text h2 { font-size: 26px; }
  }




  /* SEO MAIN CONTENT */
  /* Global Box-Sizing Fix */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Wrapper */
.cctv-content-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    padding: 0 10px;
    color: #444;
    background: #fff;
    width: 100%; 
    margin: 0;   
}

/* Main Heading */
.cctv-main-heading {
    color: #1a202c;
    font-size: 22px;
    font-weight: 700;
    margin: 35px 0 25px 0;
    border-bottom: 3px solid #2563eb; /* Changed to Blue */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Paragraphs */
.cctv-content-para {
    text-align: justify;
    margin-bottom: 25px;
    font-size: 14px;
}

/* Keyword Highlight */
.cctv-keyword-highlight {
    font-weight: 600;
    color: #2563eb; /* Changed to Blue */
    text-decoration: none;
}

/* Grid Container */
.cctv-services-grid {
    display: grid;
    gap: 25px;
    margin: 25px 0;
    grid-template-columns: 1fr 1fr 1fr; 
}

/* Service Card */
.cctv-service-card {
    padding: 20px;
    border-left: 5px solid #2563eb; /* Changed to Blue */
    background: linear-gradient(135deg,#f8f9fa 0%,#e9ecef 100%);
    border-radius: 2px; /* Set to 2px radius as requested */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform .3s ease;
    font-size: 12px;
}

.cctv-service-card:hover {
    transform: translateY(-2px);
}

/* Content Section */
.cctv-content-section {
    margin-top: -31px;
    padding: 20px 0;
}

/* Responsive for Mobile */
@media(max-width:768px){
    .cctv-content-wrapper {
        margin: 0;
        padding: 0 5px;
        width: 100%;
        overflow-x: hidden; 
    }
    .cctv-content-section {
        padding: 15px 0;
        margin-top: 0; 
    }
    .cctv-main-heading {
        font-size: 16px;
        padding-bottom: 10px;
        margin: 20px 0 15px 0;
    }
    .cctv-content-para {
        font-size: 11px;
        margin-bottom: 15px;
    }
    .cctv-services-grid {
        grid-template-columns: 1fr; 
        gap: 15px;
        margin: 15px 0;
    }
    .cctv-service-card {
        padding: 15px;
        font-size: 12px;
    }
    .cctv-content-section {
        padding: 15px 0;
        margin-top: -10px;
    }
}



/* FAQ SECTION CODE */

  .pro-faq-section {
    padding: 80px 20px; 
    background: #f8fafc; 
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
  }

  /* Background Ambient Glows */
  .pro-faq-section::before {
    content: ''; position: absolute; top: -100px; right: -50px; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.05) 0%, transparent 70%);
    border-radius: 50%; z-index: 1; pointer-events: none;
  }

  .pro-faq-container {
    max-width: 1200px; /* Aapke Navbar ke barabar width, no extra empty space! */
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Left (Heading) aur Right (FAQs) ka perfect batwara */
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
  }

  /* --- LEFT: Sticky Header --- */
  .pro-faq-header {
    position: sticky;
    top: 100px;
  }
  .pro-faq-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid rgba(29, 78, 216, 0.2);
    color: var(--primary);
    font-size: 12px; 
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(29, 78, 216, 0.05);
  }
  .pro-faq-tag .pulse-dot {
    width: 6px; height: 6px; background: var(--primary); border-radius: 50%;
    animation: faq-pulse 2s infinite;
  }
  @keyframes faq-pulse { 0% { box-shadow: 0 0 0 0 rgba(29,78,216,0.4); } 70% { box-shadow: 0 0 0 6px rgba(29,78,216,0); } 100% { box-shadow: 0 0 0 0 rgba(29,78,216,0); } }

  .pro-faq-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }
  .pro-faq-header h2 span {
    background: linear-gradient(135deg, var(--primary), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .pro-faq-header p {
    font-size: 15px; 
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
  }

  /* --- RIGHT: Advanced Accordion --- */
  .pro-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .pro-faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  }
  
  .pro-faq-item::before {
    content: ''; position: absolute; left: 0; top: 0; width: 3px; height: 100%;
    background: var(--primary); transform: scaleY(0); transition: transform 0.3s ease; transform-origin: top;
    z-index: 3;
  }

  .pro-faq-watermark {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 46px; 
    font-weight: 900;
    color: rgba(29, 78, 216, 0.03);
    pointer-events: none;
    transition: all 0.3s;
    z-index: 1;
  }

  .pro-faq-item:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  }

  .pro-faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(29, 78, 216, 0.08);
  }
  .pro-faq-item.active::before { transform: scaleY(1); }
  .pro-faq-item.active .pro-faq-watermark {
    color: rgba(29, 78, 216, 0.05);
    transform: translateY(-50%) scale(1.05);
    right: 15px;
  }

  .pro-faq-question {
    padding: 18px 24px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px; 
    font-weight: 700;
    color: var(--bg-dark);
    position: relative;
    z-index: 2;
    transition: color 0.3s;
    user-select: none;
  }
  .pro-faq-item.active .pro-faq-question { color: var(--primary); }

  .pro-faq-icon {
    width: 32px; height: 32px; 
    background: #eff6ff; color: var(--primary);
    border-radius: 2px; display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0; margin-left: 15px;
    transition: all 0.3s ease;
    border: 1px solid #bfdbfe;
  }
  .pro-faq-item.active .pro-faq-icon {
    background: var(--primary); color: #fff; border-color: var(--primary);
    transform: rotate(135deg); 
  }

  .pro-faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
    position: relative;
    z-index: 2;
  }
  .pro-faq-item.active .pro-faq-answer-wrapper { grid-template-rows: 1fr; }
  .pro-faq-answer-inner { overflow: hidden; }
  .pro-faq-answer-text {
    padding: 0 24px 20px 24px; 
    color: var(--text-light);
    font-size: 14px; 
    line-height: 1.6;
    margin: 0;
  }

  /* ===== MOBILE RESPONSIVENESS ===== */
  @media (max-width: 992px) {
    .pro-faq-container { grid-template-columns: 1fr; gap: 40px; }
    .pro-faq-header { position: relative; top: 0; text-align: center; }
    .pro-faq-tag { margin: 0 auto 16px auto; }
    .pro-faq-header p { margin: 0 auto 30px auto; max-width: 600px; }
  }
  @media (max-width: 768px) {
    .pro-faq-section { padding: 60px 15px; }
    .pro-faq-header h2 { font-size: 26px; }
    .pro-faq-question { padding: 16px; font-size: 14px; }
    .pro-faq-icon { width: 28px; height: 28px; font-size: 12px; }
    .pro-faq-answer-text { padding: 0 16px 16px 16px; font-size: 13px; }
    .pro-faq-watermark { font-size: 36px; right: 10px; }
  }





      /* AUTO SLIDE KEYWORD */
    .clean-ticker-wrap {
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
        padding: 8px 0; /* Padding bhi thodi kam ki hai taaki tight lage */
        background: transparent; 
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Ticker Track */
    .clean-ticker-track {
        display: inline-block;
        animation: slideLeft 25s linear infinite;
    }

    /* Pause on hover */
    .clean-ticker-wrap:hover .clean-ticker-track {
        animation-play-state: paused;
        cursor: pointer;
    }

    /* Professional Blue Keywords - Size reduced by 35% */
    .clean-ticker-item {
        display: inline-block;
        color: #2563eb; /* Tumhara bataya hua blue color */
        font-size: 10px; /* 16px se 35% kam karke 10px kiya */
        font-weight: 700;
        margin: 0 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: color 0.3s;
    }

    /* Hover effect - Dark color mein highlight hoga */
    .clean-ticker-item:hover {
        color: #0f172a; 
    }

    /* Separator Dot */
    .clean-ticker-item .dot {
        color: #94a3b8;
        margin-right: 10px;
    }

    /* Smooth Sliding Animation */
    @keyframes slideLeft {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* Mobile Setup */
    @media(max-width: 768px) {
        .clean-ticker-item { 
            font-size: 9px; /* Mobile ke liye aur chota (14px se 35% kam) */
            margin: 0 12px; 
        }
    }
