

/* आपके hero section की root class/ID के अनुसार चुनें */
.services-hero, .services-hero-video, .hero, .vip-geo {
  margin-top:0 !important;
  padding-top:0;
  overflow:auto;                 /* margin collapse breaker */
  border-top:1px solid transparent; /* extra breaker (invisible) */
}



/* ===== VIDEO HERO SECTION ===== */
.services-hero-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(40, 102, 201, 0.8) 0%, 
        rgba(249, 50, 55, 0.7) 50%,
        rgba(40, 102, 201, 0.9) 100%
    );
    z-index: 2;
}

.hero-content-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 0 20px;
}

.hero-text-container {
    max-width: 1200px;
    text-align: center;
    color: white;
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle-text {
    font-size: 1.5rem;
    margin-bottom: 25px;
    opacity: 0.95;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Hero Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f93237, rgba(255,255,255,0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 24px;
    color: white;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-top: 5px;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #f93237, #ff6b6b);
    color: white;
    box-shadow: 0 6px 25px rgba(249, 50, 55, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(249, 50, 55, 0.5);
    background: linear-gradient(135deg, #ff6b6b, #f93237);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 4;
}

.video-control-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.video-control-btn i {
    font-size: 18px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero-video {
        height: 80vh;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-text {
        font-size: 1.2rem;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .stat-card {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 250px;
        justify-content: center;
    }
    
    .video-controls {
        bottom: 20px;
        right: 20px;
    }
    
    .video-control-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-subtitle-text {
        font-size: 1rem;
    }
    
    .hero-description p {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* Remove old hero styles */
.services-hero {
    display: none;
}


/* Services Page Specific Styles */
.services-hero {
    height: 60vh;
    background: linear-gradient(135deg, rgba(40, 102, 201, 0.9), rgba(249, 50, 55, 0.8)), 
                url('services-hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(40, 102, 201, 0.8), rgba(249, 50, 55, 0.6));
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f93237;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-text {
    font-size: 1rem;
    opacity: 0.9;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #2866c9;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(40, 102, 201, 0.15);
}

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2866c9, #f93237);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.service-icon i {
    font-size: 24px;
    color: white;
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #2866c9;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features li i {
    color: #f93237;
    font-size: 14px;
}

.service-btn {
    background: linear-gradient(135deg, #2866c9, #f93237);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 102, 201, 0.3);
}

/* Detailed Services */
.detailed-services {
    padding: 100px 0;
    background: white;
}

.service-detail-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.2rem;
    color: #2866c9;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: #f93237;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.detail-category {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #2866c9;
}

.detail-category h3 {
    color: #2866c9;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.detail-list {
    list-style: none;
}

.detail-list li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.detail-list li i {
    color: #f93237;
    font-size: 12px;
    margin-top: 6px;
    flex-shrink: 0;
}

/* Transmission Services */
.transmission-services {
    display: grid;
    gap: 30px;
}

.transmission-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.transmission-item:hover {
    background: linear-gradient(135deg, rgba(40, 102, 201, 0.05), rgba(249, 50, 55, 0.05));
    transform: translateX(10px);
}

.transmission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2866c9, #f93237);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transmission-icon i {
    font-size: 28px;
    color: white;
}

.transmission-content h3 {
    color: #2866c9;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.transmission-content p {
    color: #666;
    line-height: 1.5;
}

/* Services CTA */
.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2866c9, #f93237);
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: white;
    color: #2866c9;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2866c9;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2866c9;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #f93237;
}

.footer-section h3 {
    color: #2866c9;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f93237;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}

.contact-info i {
    color: #f93237;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        margin: 0 20px;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .transmission-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}








/* ===== Stacked Cards (Namespace: vesc-) ===== */
#epcStacked{
  --bg:#ffffff; --ink:#0f172a; --mut:#475569;
  --blue:#2563eb; --red:#ef4444;
  --padX:clamp(18px,4vw,28px); --padY:clamp(32px,8vh,96px);
  --card-r:22px;
}
.vesc{ width:100vw; margin-left:50%; transform:translateX(-50%); background:var(--bg); color:var(--ink); }
.vesc__wrap{ max-width:1440px; margin:0 auto; padding:var(--padY) var(--padX); }

.vesc__head{ text-align:center; margin-bottom:clamp(20px,5vh,40px); }
.vesc__eyebrow{ color:var(--blue); font-weight:900; letter-spacing:.16em; text-transform:uppercase; margin:0 0 6px; }
.vesc__title{ margin:0; font-weight:1000; font-size:clamp(34px,5.8vw,52px); }
.vesc__sub{ margin:.4rem 0 0; color:var(--mut); }

/* Masonry-like responsive grid */
.vesc__grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2.4vw, 26px);
}
.vesc__card{
  grid-column: span 6;                                /* 2 cards per row on desktop */
  background:linear-gradient(145deg, rgba(37,99,235,.05), rgba(239,68,68,.05));
  border:1px solid color-mix(in oklab, var(--blue) 45%, var(--red) 55%);
  border-radius:var(--card-r);
  box-shadow:0 18px 52px rgba(2,6,23,.12);
  overflow:hidden; position:relative;
  transition:transform .25s ease, box-shadow .25s ease;
}
.vesc__card:hover{ transform:translateY(-4px); box-shadow:0 26px 80px rgba(2,6,23,.18); }

.vesc__media{ position:relative; overflow:hidden; height:clamp(220px, 32vw, 360px); }
.vesc-img{
  width:100%; height:100%; object-fit:cover;           /* distortion free */ /* [web:294] */
  transform:translateY(var(--py,0)) scale(1.06);       /* inner parallax; box stable */
  will-change:transform;
}

.vesc__body{ padding:16px 16px 18px; }
.vesc__h3{ margin:0 0 8px; font-weight:1000; font-size:clamp(18px,2vw,22px); }
.vesc__p{ margin:0 0 8px; color:var(--mut); font-size:clamp(14px,1.5vw,16px); }

/* Active glow (auto‑movement) */
.vesc__card.is-active{ outline:3px solid color-mix(in oklab, var(--blue) 50%, var(--red) 50%); outline-offset:-3px; }

/* Micro interactions */
.vesc__card::after{
  content:attr(data-step);
  position:absolute; top:12px; right:12px; width:38px; height:38px; border-radius:999px;
  display:grid; place-items:center; font-weight:900; color:#1d4ed8; background:#fff;
  border:3px solid color-mix(in oklab, var(--blue) 50%, var(--red) 50%);
  box-shadow:0 10px 20px rgba(2,6,23,.14);
}

/* Responsive */
@media (max-width:1120px){ .vesc__card{ grid-column: span 12; } } /* 1 card per row */
@media (prefers-reduced-motion:reduce){
  .vesc__card, .vesc-img{ transition:none !important; }
}
















/* ================= VIFE FOOTER FULL (Namespace: viff-) ================= */
:root{
  --viff-blue:#2866c9;
  --viff-red:#f93237;
  --viff-bg1:#0b1224;
  --viff-bg2:#0f172a;
  --viff-white:#fff;
  --viff-muted:#a9b6c8;

  --viff-glass:rgba(255,255,255,.10);
  --viff-stroke:rgba(255,255,255,.18);

  --viff-shadow-1:0 10px 30px rgba(0,0,0,.25);
  --viff-shadow-2:0 18px 50px rgba(40,102,201,.28);
}

.viff{ position:relative; color:var(--viff-white);
  background: radial-gradient(60% 60% at 15% 15%, rgba(40,102,201,.14), transparent 60%),
              radial-gradient(50% 50% at 85% 80%, rgba(249,50,55,.12), transparent 60%),
              linear-gradient(180deg, var(--viff-bg2), var(--viff-bg1));
  overflow:hidden;
}
.viff__container{ width:min(1200px,92vw); margin:auto; padding:48px 0 20px; }

/* Parallax glow layers */
.viff__bg{ position:absolute; inset:0; z-index:0; pointer-events:none; }
.viff__layer{ position:absolute; inset:-30%; opacity:.22; mix-blend-mode:screen; }
.viff__layer--back{  background:radial-gradient(40% 60% at 15% 20%, rgba(40,102,201,.35), transparent 60%); }
.viff__layer--mid{   background:radial-gradient(50% 50% at 85% 80%, rgba(249,50,55,.35), transparent 60%); }
.viff__layer--front{ background:radial-gradient(25% 25% at 60% 30%, rgba(255,255,255,.18), transparent 70%); }

/* Brand row (open layout) */
.viff__brand{ position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap; }
.viff__brand-tilt{ display:flex; align-items:center; gap:14px; }
.viff__logo{ width:68px; height:68px; object-fit:contain; filter:drop-shadow(0 6px 12px rgba(0,0,0,.28)); }
.viff__name{ margin:0; font-size:1.2rem; font-weight:900; letter-spacing:.2px; }
.viff__tag{ margin:0; color:#cfe0ff; font-weight:700; }

/* Social (open) */
.viff__social{ display:flex; align-items:center; gap:10px; }
.viff__soc{
  width:42px; height:42px; display:grid; place-items:center; border-radius:12px;
  color:#fff; background:var(--viff-glass); border:1px solid var(--viff-stroke);
  transition:transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.viff__soc:hover{ transform:translateY(-3px) scale(1.05); background:linear-gradient(135deg,var(--viff-blue),#1e40af); box-shadow:var(--viff-shadow-2); }

/* Divider */
.viff__rule{ height:1px; border:0; margin:18px 0; background:linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent); }
.viff__rule--soft{ background:linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent); }

/* Link rows (open, no boxes) */
.viff__links{ position:relative; z-index:1; display:grid; gap:16px; grid-template-columns:repeat(4, minmax(0,1fr)); }
@media (max-width:900px){ .viff__links{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .viff__links{ grid-template-columns:1fr;} }

.viff__col{ transform-style:preserve-3d; }
.viff__h{ margin:0 0 8px; font-size:1.02rem; font-weight:900; }
.viff__list{ list-style:none; margin:0; padding:0; display:grid; gap:8px; }
.viff__list--contact i{ margin-right:8px; }
.viff__link{
  color:#fff; text-decoration:none; font-weight:850; letter-spacing:.2px;
  background: linear-gradient(90deg, #fff, #fff) no-repeat left bottom/0 2px;
  transition: background-size .25s ease, color .25s ease, transform .2s ease;
}
.viff__link:hover{ background-size:100% 2px; transform:translateX(2px); }
.viff__text{ color:#e6f0ff; font-weight:700; }

/* Bottom bar */
.viff__bottom{ position:relative; z-index:1; margin-top:12px;
  display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.viff__copy{ color:#dfe8ff; font-weight:800; }
.viff__managed{ color:#dfe8ff; font-weight:800; }
.viff__managed-link{ color:#93c5fd; text-decoration:none; font-weight:900; }
.viff__managed-link:hover{ text-decoration:underline; }
.viff__policies{ list-style:none; margin:0; padding:0; display:flex; gap:12px; }
.viff__plink{ color:#bfdbfe; font-weight:800; text-decoration:none; }
.viff__plink:hover{ text-decoration:underline; }

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  .viff__layer{ transform:none !important; }
  .viff__soc, .viff__link{ transition:none !important; }
}




/* page-level safe padding on both sides */
body.services main{
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
  box-sizing: border-box;
}
/* grid wrap */
body.services .services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 3vw, 28px);      /* horizontal + vertical gutter */
}

/* individual card */
body.services .service-card{
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 26px rgba(16,24,40,.08);
}

/* images should not stretch outside */
body.services .service-card img{
  width: 100%;
  height: auto;
  display: block;
}
body.services .container,
body.services .wrapper{
  max-width: 1200px;        /* या आपकी preferred */
  margin: 0 auto;           /* center */
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
  box-sizing: border-box;
}
