﻿/* ===== WILLBROSE INDIA - CORPORATE WEBSITE ===== */
/* Font: Plus Jakarta Sans */

*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:'Plus Jakarta Sans','Segoe UI',sans-serif;color:#1F2937;background:#fff;line-height:1.6;overflow-x:hidden;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
img{max-width:100%;height:auto;}
.container{width:92%;max-width:1200px;margin:0 auto;}

/* ===== TOP BAR ===== */
.top-bar{
  background:#1E293B;padding:10px 0;font-size:13px;color:#CBD5E1;
}
.top-bar .container{display:flex;justify-content:space-between;align-items:center;}
.top-bar-left{display:flex;gap:25px;align-items:center;}
.top-bar-left span{display:flex;align-items:center;gap:6px;}
.top-bar-left svg{width:14px;height:14px;stroke:#DC2626;}
.top-bar-right{display:flex;align-items:center;gap:8px;}
.top-bar-right span{color:#CBD5E1;font-size:13px;margin-right:8px;}
.top-bar-right a{
  width:28px;height:28px;border-radius:50%;border:1px solid rgba(255,255,255,0.2);
  display:flex;align-items:center;justify-content:center;transition:0.3s;
}
.top-bar-right a svg{width:13px;height:13px;fill:#CBD5E1;}
.top-bar-right a.fb svg{fill:#1877F2;}
.top-bar-right a.li svg{fill:#0A66C2;}
.top-bar-right a.ig svg{fill:#E4405F;}
.top-bar-right a.yt svg{fill:#FF0000;}
.top-bar-right a:hover{background:rgba(255,255,255,0.1);transform:scale(1.1);}

/* ===== HEADER / NAV ===== */
.main-header{
  background:transparent;padding:10px 0;position:sticky;top:0;z-index:999;
  box-shadow:none;
  border-radius:0;
  margin:0;
}
.main-header .container{
  display:flex;align-items:center;justify-content:space-between;
  background:#fff;padding:10px 30px;border-radius:50px;
  box-shadow:0 2px 15px rgba(0,0,0,0.08);
}
.logo{display:flex;align-items:center;gap:10px;}
.logo img{height:48px;}
.logo-text{display:flex;flex-direction:column;line-height:1.2;}
.logo-text .brand-name{font-size:22px;font-weight:800;color:#1E3A5F;}
.logo-text .brand-name span{color:#DC2626;}
.logo-text .brand-sub{font-size:11px;color:#DC2626;font-weight:600;}

.main-nav{display:flex;align-items:center;gap:5px;}
.main-nav>a,.nav-dropdown>a{
  padding:10px 16px;font-size:14px;font-weight:500;color:#374151;
  border-radius:6px;transition:0.2s;
}
.main-nav>a:hover,.nav-dropdown>a:hover{color:#DC2626;}
.main-nav>a.active{color:#DC2626;font-weight:600;}

/* Dropdown */
.nav-dropdown{position:relative;}
.dropdown-menu{
  position:absolute;top:100%;left:0;min-width:240px;
  background:#fff;border-radius:10px;padding:8px 0;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);border:1px solid #F1F5F9;
  opacity:0;visibility:hidden;transform:translateY(8px);transition:0.3s;z-index:1000;
}
.nav-dropdown:hover .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0);}
.dropdown-menu a{
  display:block;padding:10px 18px;font-size:13px;color:#374151;transition:0.2s;
}
.dropdown-menu a:hover{background:#FEF2F2;color:#DC2626;padding-left:22px;}

.header-cta{
  display:flex;align-items:center;gap:8px;
  background:linear-gradient(135deg,#DC2626,#1E3A5F,#2563EB);background-size:200% auto;
  color:#fff;padding:8px 20px;border-radius:50px;
  font-size:13px;font-weight:600;transition:0.4s;animation:btnShimmer 3s ease infinite;
}
.header-cta svg{width:14px;height:14px;fill:#fff;animation:callRing 1.5s ease-in-out infinite;}
.header-cta:hover{opacity:0.9;transform:translateY(-1px);box-shadow:0 6px 20px rgba(0,0,0,0.2);}

@keyframes callRing{
  0%{transform:rotate(0deg);}
  10%{transform:rotate(15deg);}
  20%{transform:rotate(-10deg);}
  30%{transform:rotate(12deg);}
  40%{transform:rotate(-8deg);}
  50%{transform:rotate(8deg);}
  60%{transform:rotate(0deg);}
  100%{transform:rotate(0deg);}
}

.menu-toggle{display:none;font-size:26px;cursor:pointer;color:#1F2937;}

/* Mobile Nav */
.mobile-nav{
  background:#fff;position:fixed;top:0;right:-280px;width:280px;height:100vh;
  z-index:9999;padding:20px 0;box-shadow:-5px 0 30px rgba(0,0,0,0.15);
  transition:right 0.3s ease;overflow-y:auto;
}
.mobile-nav.show{right:0;}
.mobile-nav a{
  display:block;padding:14px 25px;font-size:15px;color:#1F2937;
  border-bottom:1px solid #F1F5F9;font-weight:500;
}
.mobile-nav a:hover{color:#DC2626;background:#FEF2F2;}
.mobile-nav-overlay{
  display:none;position:fixed;top:0;left:0;width:100%;height:100vh;
  background:rgba(0,0,0,0.4);z-index:9998;
}
.mobile-nav-overlay.show{display:block;}

/* ===== HERO SECTION ===== */
.hero{
  position:relative;min-height:500px;display:flex;align-items:center;
  background:#F8FAFC;overflow:hidden;
}
.hero-bg{
  position:absolute;top:0;left:0;width:100%;height:100%;
  background:url("../images/wbi_hero.webp") center/cover no-repeat;
}
.hero-bg::before{
  display:none;
}
.hero-content{position:relative;z-index:2;max-width:550px;padding:60px 0;}
.hero-label{
  display:flex;align-items:center;gap:8px;margin-bottom:16px;
  font-size:13px;color:#DC2626;font-weight:600;text-transform:uppercase;letter-spacing:1px;
}
.hero-label::before{content:'';width:30px;height:3px;background:#DC2626;border-radius:2px;}
.hero h1{font-size:42px;font-weight:800;color:#1E293B;line-height:1.2;margin-bottom:16px;}
.hero h1 span{color:#DC2626;}
.hero-desc{font-size:16px;color:#6B7280;margin-bottom:24px;line-height:1.7;}

.hero-badges{display:flex;gap:12px;margin-bottom:30px;flex-wrap:wrap;}
.hero-badge{
  display:flex;align-items:center;gap:6px;padding:8px 16px;
  background:#fff;border:1px solid #E5E7EB;border-radius:50px;
  font-size:12px;color:#374151;font-weight:500;
}
.hero-badge svg{width:14px;height:14px;stroke:#DC2626;}

.hero-buttons{display:flex;gap:12px;margin-bottom:40px;flex-wrap:wrap;}
.btn-red{
  display:inline-flex;align-items:center;gap:8px;
  background:linear-gradient(135deg,#DC2626,#1E3A5F,#2563EB);background-size:200%% auto;color:#fff;padding:14px 28px;border-radius:6px;`n  font-size:14px;font-weight:600;transition:0.4s;animation:btnShimmer 3s ease infinite;
}
.btn-red:hover{background-position:right center;transform:translateY(-2px);box-shadow:0 8px 20px rgba(220,38,38,0.2);}
.btn-outline{
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;color:#1F2937;padding:14px 28px;border-radius:6px;
  font-size:14px;font-weight:600;border:1.5px solid #D1D5DB;transition:0.3s;
}
.btn-outline svg{width:16px;height:16px;stroke:#1F2937;}
.btn-outline:hover{border-color:#1F2937;transform:translateY(-2px);box-shadow:0 4px 12px rgba(0,0,0,0.06);}

/* Hero Service Tags */
.hero-service-bar{
  position:absolute;bottom:0;right:0;width:55%;
  background:rgba(30,58,95,0.92);padding:20px 30px;
  display:flex;justify-content:space-around;
  border-radius:12px 0 0 0;
}
.hero-service-item{display:flex;align-items:center;gap:12px;color:#fff;}
.hero-service-item .hs-icon{
  width:40px;height:40px;border:1.5px solid rgba(255,255,255,0.3);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
}
.hero-service-item .hs-icon svg{width:18px;height:18px;stroke:#fff;}
.hero-service-item .hs-text strong{font-size:13px;font-weight:700;display:block;}
.hero-service-item .hs-text span{font-size:11px;color:#CBD5E1;font-weight:400;}

/* ===== STATS BAR ===== */
.stats-bar{
  background:#fff;border:1px solid #E5E7EB;border-radius:12px;
  margin:-10px auto 0;position:relative;z-index:10;
  padding:30px 40px;display:flex;justify-content:space-around;align-items:center;
  box-shadow:0 4px 20px rgba(0,0,0,0.04);max-width:1000px;
}
.stat-item{display:flex;align-items:center;gap:14px;text-align:left;}
.stat-item .stat-icon{
  width:48px;height:48px;background:#FEF2F2;border-radius:10px;
  display:flex;align-items:center;justify-content:center;
}
.stat-item .stat-icon svg{width:22px;height:22px;stroke:#DC2626;}
.stat-item .stat-icon.blue{background:#EFF6FF;}
.stat-item .stat-icon.blue svg{stroke:#2563EB;}
.stat-item .stat-number{font-size:26px;font-weight:800;color:#1E293B;line-height:1;}
.stat-item .stat-label{font-size:13px;color:#6B7280;margin-top:2px;}

/* ===== SECTION COMMON ===== */
.section{padding:80px 0;}
.section-light{background:#F8FAFC;}
.section-subtitle{
  font-size:13px;color:#DC2626;font-weight:600;text-transform:uppercase;
  letter-spacing:2px;margin-bottom:8px;text-align:center;
}
.section-title{
  font-size:32px;font-weight:800;color:#1E293B;text-align:center;margin-bottom:50px;
}

/* ===== SERVICES SECTION ===== */
.services-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:24px;
}
.service-box{
  background:#fff;border:1px solid #E5E7EB;border-radius:12px;
  padding:30px 20px;text-align:center;transition:0.3s;
}
.service-box:hover{border-color:#DC2626;box-shadow:0 10px 30px rgba(220,38,38,0.06);transform:translateY(-4px);}
.service-box .sb-icon{
  width:56px;height:56px;margin:0 auto 16px;background:#FEF2F2;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
}
.service-box .sb-icon svg{width:26px;height:26px;stroke:#DC2626;}
.service-box h3{font-size:15px;font-weight:700;color:#1E293B;margin-bottom:8px;}
.service-box p{font-size:13px;color:#6B7280;line-height:1.6;margin-bottom:14px;}
.service-box .read-more{font-size:13px;color:#DC2626;font-weight:600;transition:0.2s;}
.service-box .read-more:hover{color:#991B1B;}

/* ===== INDUSTRIES SECTION ===== */
.industries-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(130px,1fr));gap:20px;text-align:center;
}
.industry-item{padding:20px 10px;}
.industry-item .ind-icon{
  width:50px;height:50px;margin:0 auto 10px;background:#EFF6FF;border-radius:10px;
  display:flex;align-items:center;justify-content:center;
}
.industry-item .ind-icon svg{width:24px;height:24px;stroke:#2563EB;}
.industry-item p{font-size:13px;font-weight:600;color:#374151;}

/* ===== ABOUT + TESTIMONIAL ROW ===== */
.about-testi-grid{display:grid;grid-template-columns:1fr 1.2fr 1fr;gap:30px;align-items:stretch;}
.about-image{border-radius:12px;overflow:hidden;height:100%;}
.about-image img{width:100%;height:100%;object-fit:cover;}
.about-box{padding:30px;}
.about-box .section-subtitle{text-align:left;}
.about-box h2{font-size:26px;font-weight:800;color:#1E293B;margin-bottom:14px;text-align:left;}
.about-box p{font-size:14px;color:#6B7280;margin-bottom:16px;line-height:1.7;}
.about-features{margin-bottom:20px;}
.about-features li{
  display:flex;align-items:center;gap:8px;padding:6px 0;
  font-size:14px;color:#374151;font-weight:500;
}
.about-features li svg{width:16px;height:16px;stroke:#DC2626;}
.btn-outline-red{
  display:inline-block;padding:12px 24px;border:2px solid #DC2626;
  color:#DC2626;border-radius:6px;font-size:14px;font-weight:600;transition:0.3s;
}
.btn-outline-red:hover{background:linear-gradient(135deg,#DC2626,#1E3A5F,#2563EB);color:#fff;border-color:transparent;}

.testi-box{
  background:#F8FAFC;border:1px solid #E5E7EB;border-radius:12px;padding:30px;
  display:flex;flex-direction:column;justify-content:center;
}
.testi-box .testi-title{font-size:15px;font-weight:700;color:#1E293B;margin-bottom:14px;}
.testi-box .quote-icon{font-size:36px;color:#DC2626;line-height:1;margin-bottom:10px;}
.testi-box .testi-text{font-size:14px;color:#6B7280;font-style:italic;line-height:1.7;margin-bottom:16px;}
.testi-box .testi-stars{color:#F59E0B;font-size:16px;margin-bottom:12px;}
.testi-box .testi-author{display:flex;align-items:center;gap:10px;}
.testi-box .testi-author-img{width:40px;height:40px;border-radius:50%;background:#E5E7EB;}
.testi-box .testi-author-info strong{font-size:14px;color:#1E293B;display:block;}
.testi-box .testi-author-info span{font-size:12px;color:#6B7280;}

/* ===== CTA SECTION ===== */
.wb-cta{background:#1E3A5F;padding:50px 0;}
.wb-cta .container{display:flex;align-items:center;justify-content:space-between;gap:30px;}
.wb-cta-left{display:flex;align-items:center;gap:20px;}
.wb-cta-icon{
  width:56px;height:56px;border-radius:50%;background:rgba(255,255,255,0.1);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.wb-cta-icon svg{width:26px;height:26px;stroke:#fff;}
.wb-cta-text h2{color:#fff;font-size:24px;font-weight:700;margin-bottom:4px;}
.wb-cta-text p{color:#CBD5E1;font-size:15px;}
.wb-cta-buttons{display:flex;gap:12px;flex-shrink:0;}
.wb-cta .btn-red{border:none;}
.wb-cta .btn-outline{border-color:#fff;color:#fff;background:rgba(255,255,255,0.15);}
.wb-cta .btn-outline svg{stroke:#fff;}
.wb-cta .btn-outline:hover{background:#fff;color:#1E3A5F;}
.wb-cta .btn-outline:hover svg{stroke:#1E3A5F;}

/* ===== FOOTER ===== */
.wb-footer{background:#F8FAFC;padding:60px 0 0;border-top:1px solid #E5E7EB;}
.wb-footer-grid{
  display:grid;grid-template-columns:2fr 1fr 1.2fr 1.5fr;gap:50px;padding-bottom:40px;
}
.wb-footer-brand .footer-logo{height:48px;margin-bottom:14px;}
.wb-footer-brand p{font-size:13px;color:#374151;line-height:1.7;margin-bottom:16px;}
.wb-footer-social{display:flex;gap:8px;}
.wb-footer-social a{
  width:34px;height:34px;border-radius:50%;background:#fff;border:1px solid #E5E7EB;
  display:flex;align-items:center;justify-content:center;transition:0.3s;
}
.wb-footer-social a svg{width:14px;height:14px;fill:#6B7280;}
.wb-footer-social a.fb svg{fill:#1877F2;}
.wb-footer-social a.li svg{fill:#0A66C2;}
.wb-footer-social a.ig svg{fill:#E4405F;}
.wb-footer-social a.yt svg{fill:#FF0000;}
.wb-footer-social a:hover{background:#F1F5F9;transform:scale(1.1);}

.wb-footer-col h4{`n  font-size:13px;font-weight:700;color:#111827;text-transform:uppercase;
  letter-spacing:1px;margin-bottom:18px;
}
.wb-footer-col ul li{margin-bottom:10px;}
.wb-footer-col ul li a{font-size:14px;color:#374151;transition:0.2s;}
.wb-footer-col ul li a:hover{color:#DC2626;}

.wb-footer-contact .fc-item{display:flex;gap:10px;margin-bottom:14px;align-items:flex-start;}
.wb-footer-contact .fc-icon{
  width:30px;height:30px;min-width:30px;border-radius:50%;background:#EFF6FF;
  display:flex;align-items:center;justify-content:center;margin-top:2px;
}
.wb-footer-contact .fc-icon svg{width:13px;height:13px;stroke:#2563EB;}
.wb-footer-contact .fc-text{font-size:13px;color:#374151;line-height:1.6;}
.wb-footer-contact .fc-text a{color:#1E3A5F;font-weight:500;transition:0.2s;}
.wb-footer-contact .fc-text a:hover{color:#DC2626;}

/* Footer Bottom */
.wb-footer-bottom{background:#111827;padding:16px 0;}
.wb-footer-bottom .container{
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px;
}
.wb-bottom-badges{display:flex;gap:16px;align-items:center;}
.wb-bottom-badges .badge{
  display:flex;align-items:center;gap:6px;font-size:11px;color:#9CA3AF;font-weight:500;
}
.wb-bottom-badges .badge svg{width:14px;height:14px;stroke:#9CA3AF;}
.wb-bottom-copy{font-size:12px;color:#6B7280;}
.wb-bottom-links{display:flex;gap:14px;}
.wb-bottom-links a{font-size:12px;color:#9CA3AF;transition:0.2s;}
.wb-bottom-links a:hover{color:#fff;}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float{
  position:fixed;right:25px;bottom:25px;
  background:#25D366;width:56px;height:56px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 15px rgba(37,211,102,0.4);transition:0.3s;z-index:998;
  animation:whatsappBounce 2s ease-in-out infinite;
}
.whatsapp-float::before{
  content:'';position:absolute;inset:-4px;border-radius:50%;
  border:2px solid #25D366;animation:whatsappPulse 1.5s ease-out infinite;
}
.whatsapp-float:hover{transform:scale(1.1);box-shadow:0 6px 25px rgba(37,211,102,0.6);animation:none;}
@keyframes whatsappBounce{0%,100%{transform:translateY(0);}50%{transform:translateY(-6px);}}
@keyframes whatsappPulse{0%{transform:scale(1);opacity:1;}100%{transform:scale(1.5);opacity:0;}}

/* ===== PAGE BANNER (for inner pages) ===== */
.page-banner{background:linear-gradient(135deg,#1E3A5F,#2D5A8E);padding:120px 0 80px;text-align:center;}
.page-banner h1{color:#fff;font-size:36px;font-weight:800;margin-bottom:10px;}
.page-banner p{color:#CBD5E1;font-size:16px;}
.page-banner .breadcrumb{margin-top:16px;font-size:13px;color:#94A3B8;}
.page-banner .breadcrumb a{color:#60A5FA;}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
  .hero-bg{width:100%;opacity:1;}
  .hero-bg::before{display:none;}
  .hero-content{max-width:100%;}
  .hero-service-bar{display:none;}
  .stats-bar{flex-wrap:wrap;gap:20px;justify-content:center;margin:-20px 20px 0;}
  .about-testi-grid{grid-template-columns:1fr;}
  .wb-footer-grid{grid-template-columns:1fr 1fr;}
  .wb-cta .container{flex-direction:column;text-align:center;}
  .wb-cta-left{flex-direction:column;}
  .wb-cta-buttons{justify-content:center;}
}
@media(max-width:768px){
  .top-bar{display:none;}
  .main-nav{display:none;}
  .menu-toggle{display:block;}
  .header-cta{display:none;}
  .main-header .container{padding:8px 15px;border-radius:30px;}
  .logo img{height:38px;}
  .hero{min-height:auto;padding:0;}
  .hero-bg{position:relative;width:100%;height:auto;padding-top:60%;background-size:contain;background-position:center;background-repeat:no-repeat;background-color:#f8fafc;}
  .stats-bar{flex-direction:row;flex-wrap:wrap;padding:20px;gap:15px;margin:10px 15px 0;border-radius:12px;justify-content:center;}
  .stat-item{width:45%;justify-content:flex-start;}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .industries-grid{grid-template-columns:repeat(2,1fr);}
  .section{padding:50px 0;}
  .section-title{font-size:24px;}
  .wb-footer-grid{grid-template-columns:1fr;gap:30px;}
  .wb-footer-bottom .container{flex-direction:column;text-align:center;}
  .wb-bottom-badges{flex-wrap:wrap;justify-content:center;}
}
@media(max-width:480px){
  .services-grid{grid-template-columns:1fr;}
  .industries-grid{grid-template-columns:repeat(2,1fr);}
  .hero-buttons{flex-direction:column;}
}


/* INNER PAGE RESPONSIVE */
@media(max-width:768px){
  .about-testi-grid{grid-template-columns:1fr !important;}
  [style*="grid-template-columns:1fr 1fr"]{grid-template-columns:1fr !important;}
  [style*="grid-template-columns:1fr 1.2fr"]{grid-template-columns:1fr !important;}
  [style*="grid-template-columns:repeat(3,1fr)"]{grid-template-columns:1fr !important;}
  [style*="grid-template-columns:repeat(4,1fr)"]{grid-template-columns:repeat(2,1fr) !important;}
}





/* BUTTON SHIMMER ANIMATION */
@keyframes btnShimmer{
  0%{background-position:0% center;}
  50%{background-position:100% center;}
  100%{background-position:0% center;}
}

/* LOGO TEXT STYLE (like image - WBi with Willbrose India) */
.logo-text .brand-name{font-size:32px;font-weight:800;color:#1E3A5F;letter-spacing:-1px;line-height:1;}
.logo-text .brand-name span{color:#DC2626;}
.logo-text .brand-sub{font-size:11px;color:#DC2626;font-weight:600;letter-spacing:0.5px;}
.logo-i{
  position:relative;display:inline-block;color:#DC2626;font-size:36px;
}
.logo-globe{
  position:absolute;top:-10px;left:50%;transform:translateX(-50%);
  width:14px;height:14px;border-radius:50%;border:2px solid #2563EB;
  display:block;
}
.logo-globe::before{
  content:'';position:absolute;top:1px;left:50%;transform:translateX(-50%);
  width:6px;height:10px;border-radius:50%;border:1.5px solid #2563EB;
}
.logo-globe::after{
  content:'';position:absolute;top:50%;left:0;right:0;
  height:1.5px;background:#2563EB;transform:translateY(-50%);
}



/* PREVENT HORIZONTAL SCROLL */
html,body{overflow-x:hidden;max-width:100vw;}
.main-header,.hero,.section,.section-light,.stats-bar,.wb-cta,.wb-footer,.wb-footer-bottom{max-width:100%;overflow:hidden;}


/* PAGE BANNER MOBILE */
@media(max-width:768px){
  .page-banner{
    background-size:contain !important;
    background-position:center !important;
    background-color:#1E3A5F !important;
    padding:70px 15px 40px !important;
  }
  .page-banner h1{font-size:24px !important;}
  .page-banner p{font-size:13px !important;}
}


/* HIDE MOBILE NAV ON DESKTOP */
@media(min-width:769px){
  .mobile-nav{display:none !important;}
  .mobile-nav-overlay{display:none !important;}
}


/* ===== SCROLL ANIMATIONS ===== */
.animate{opacity:0;transition:all 0.8s ease-out;}
.animate.fade-up{transform:translateY(40px);}
.animate.fade-down{transform:translateY(-40px);}
.animate.fade-left{transform:translateX(-60px);}
.animate.fade-right{transform:translateX(60px);}
.animate.fade-in{transform:scale(0.95);}
.animate.zoom-in{transform:scale(0.8);}
.animate.show{opacity:1;transform:translate(0) scale(1);}

/* Stagger delay for grid items */
.animate-delay-1{transition-delay:0.1s;}
.animate-delay-2{transition-delay:0.2s;}
.animate-delay-3{transition-delay:0.3s;}
.animate-delay-4{transition-delay:0.4s;}
.animate-delay-5{transition-delay:0.5s;}
.animate-delay-6{transition-delay:0.6s;}

/* Typing animation */
.typing-text{border-right:3px solid #DC2626;white-space:nowrap;overflow:hidden;animation:typing 3s steps(40) 1s forwards,blink 0.7s step-end infinite;}
@keyframes typing{from{width:0;}to{width:100%;}}
@keyframes blink{50%{border-color:transparent;}}

/* Counter animation */
.counter{display:inline-block;}


/* WHATSAPP LIVE ANIMATION */
.whatsapp-float{animation:whatsappBounce 2s ease-in-out infinite;}
.whatsapp-float::before{
  content:'';position:absolute;inset:-4px;border-radius:50%;
  border:2px solid #25D366;animation:whatsappRing 1.5s ease-out infinite;
}
.whatsapp-float::after{
  content:'';position:absolute;inset:-8px;border-radius:50%;
  border:1px solid #25D366;animation:whatsappRing 1.5s ease-out infinite 0.5s;
}
@keyframes whatsappBounce{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-6px);}
}
@keyframes whatsappRing{
  0%{transform:scale(1);opacity:0.8;}
  100%{transform:scale(1.6);opacity:0;}
}


/* NAV ACTIVE UNDERLINE */
.main-nav>a,.nav-dropdown>a{position:relative;}
.main-nav>a::after{
  content:'';position:absolute;bottom:2px;left:16px;right:16px;
  height:2px;background:#DC2626;transform:scaleX(0);transition:0.3s ease;
}
.main-nav>a:hover::after,.main-nav>a.active::after{transform:scaleX(1);}


/* HOW WE WORK MOBILE */
@media(max-width:768px){
  [style*="grid-template-columns:repeat(4,1fr)"]{grid-template-columns:1fr !important;}
  [style*="grid-template-columns:repeat(3,1fr)"]{grid-template-columns:1fr !important;}
  [style*="grid-template-columns:repeat(5,1fr)"]{grid-template-columns:repeat(2,1fr) !important;}
  [style*="grid-template-columns:1fr 1fr"]{grid-template-columns:1fr !important;}
  [style*="grid-template-columns:1fr 1.2fr"]{grid-template-columns:1fr !important;}
  [style*="grid-template-columns:1.2fr 1fr"]{grid-template-columns:1fr !important;}
}


/* INDUSTRY ITEMS HOVER */
.industry-item{transition:0.3s ease;}
.industry-item:hover{transform:translateY(-6px);}
.industry-item .ind-icon{transition:0.3s ease;}
.industry-item:hover .ind-icon{transform:scale(1.1);box-shadow:0 8px 20px rgba(37,99,235,0.15);}


/* FINAL MOBILE FIX - ALL GRIDS SINGLE COLUMN */
@media(max-width:768px){
  .services-grid{grid-template-columns:1fr !important;}
  .industries-grid{grid-template-columns:1fr !important;}
  div[style*="grid-template-columns:repeat(4"]{grid-template-columns:1fr !important;}
  div[style*="grid-template-columns:repeat(5"]{grid-template-columns:1fr !important;}
  div[style*="grid-template-columns:repeat(3"]{grid-template-columns:1fr !important;}
  div[style*="grid-template-columns:1fr 1.2fr"]{grid-template-columns:1fr !important;}
  div[style*="grid-template-columns:1.2fr 1fr"]{grid-template-columns:1fr !important;}
  div[style*="grid-template-columns:1fr 1fr"]{grid-template-columns:1fr !important;}
  div[style*="grid-template-columns:2fr 1fr"]{grid-template-columns:1fr !important;}
  .wb-footer-grid{grid-template-columns:1fr !important;}
  .stats-bar{flex-direction:column !important;align-items:flex-start !important;}
  .stat-item{width:100% !important;}
  .page-banner h1{font-size:24px !important;}
  .page-banner p{font-size:14px !important;}
  .page-banner{padding:80px 15px 50px !important;background-size:cover !important;}
  .section-title{font-size:22px !important;}
  .about-box h2{font-size:22px !important;}
  .service-box{padding:20px 15px !important;}
  .service-box h3{font-size:14px !important;}
  .service-box p{font-size:12px !important;}
  .service-box .sb-icon{width:44px !important;height:44px !important;}
}


/* ABOUT 15+ BADGE MOBILE */
@media(max-width:768px){
  div[style*="position:absolute;bottom:20px;left:20px"]{
    padding:10px 14px !important;
  }
  div[style*="font-size:28px;font-weight:800;color:#DC2626"]{
    font-size:18px !important;
  }
}


/* CTA BUTTONS LIVE ANIMATION */
.wb-cta .btn-red{
  background:linear-gradient(135deg,#DC2626,#1E3A5F,#2563EB) !important;
  background-size:200% auto !important;
  animation:btnShimmer 3s ease infinite !important;
  border:none !important;
}
.wb-cta .btn-red:hover{background-position:right center !important;transform:translateY(-3px);box-shadow:0 8px 25px rgba(220,38,38,0.3);}

.wb-cta .btn-outline{
  border:2px solid #fff !important;color:#fff !important;
  background:rgba(255,255,255,0.1) !important;
  animation:ctaPulse 2s ease-in-out infinite !important;
}
.wb-cta .btn-outline:hover{background:#fff !important;color:#1E3A5F !important;transform:translateY(-3px);}

@keyframes ctaPulse{
  0%,100%{box-shadow:0 0 0 0 rgba(255,255,255,0.4);}
  50%{box-shadow:0 0 0 8px rgba(255,255,255,0);}
}

/* CTA MOBILE */
@media(max-width:768px){
  .wb-cta{padding:30px 0 !important;}
  .wb-cta-text h2{font-size:18px !important;}
  .wb-cta-text p{font-size:13px !important;}
  .wb-cta .btn-red,.wb-cta .btn-outline{padding:10px 18px !important;font-size:12px !important;}
  .wb-cta-buttons{flex-wrap:wrap;justify-content:center;}
  .wb-cta-icon{width:40px !important;height:40px !important;}
  .wb-cta-icon svg{width:20px !important;height:20px !important;}
}


/* HIDE 15+ BADGE ON MOBILE */
@media(max-width:768px){
  div[style*="position:absolute;bottom:20px;left:20px;background:#fff"]{
    display:none !important;
  }
}


/* CONTACT PAGE MOBILE FIX */
@media(max-width:768px){
  .container{width:95% !important;padding:0 10px;}
  div[style*="padding:40px"]{padding:20px !important;}
  div[style*="display:grid;grid-template-columns:1fr 1fr;gap:16px"]{grid-template-columns:1fr !important;}
}
