/* ============================================================
   Alok Bharti Communications - Custom Modern Styles
   ============================================================ */

:root {
  --primary: #74bf02;
  --primary-dark: #5a9a00;
  --primary-light: #8ee01a;
  --secondary: #222222;
  --accent: #ff6b35;
  --dark: #1a1a2e;
  --darker: #0f0f1a;
  --light: #f8f9fa;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --gradient-primary: linear-gradient(135deg, #74bf02 0%, #5a9a00 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #1a1a2e 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 5px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-hover: 0 15px 50px rgba(0,0,0,0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLOBAL IMPROVEMENTS ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  color: #333;
}

a, button, .nav-link, .dropdown-item {
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== TOP BAR ===== */
.w3l-top-menu-1 .top-hd {
  background: var(--dark);
  padding: 8px 0;
  border-bottom: 3px solid var(--primary);
}

.w3l-top-menu-1 .accounts ul li a,
.w3l-top-menu-1 .accounts ul li {
  color: #fff !important;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.w3l-top-menu-1 .accounts ul li .fa {
  color: var(--primary);
  margin-right: 6px;
}

.main-social-head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff !important;
  margin: 0 3px;
  transition: var(--transition);
}

.main-social-head a:hover {
  background: var(--primary);
  color: #fff !important;
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.w3l-bootstrap-header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 0;
}

.navbar-nav .nav-link {
  color: var(--secondary) !important;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 15px 14px !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 14px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
  width: calc(100% - 28px);
}

.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
}

/* Dropdown */
.dropdown-menu {
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 220px;
  animation: fadeInUp 0.3s ease;
}

.dropdown-item {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  color: var(--secondary);
}

.dropdown-item:hover {
  background: var(--primary);
  color: #fff;
  transform: translateX(5px);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== PAGE BANNER ===== */
.page-banner {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(116,191,2,0.4) 100%);
  z-index: 1;
}

.page-banner .banheader {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.page-banner .banheader::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ===== SECTION TITLES ===== */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h1,
.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  position: relative;
}

.section-title h1 span,
.section-title h2 span {
  color: var(--primary);
}

.section-title .title-line {
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 10px auto;
  border-radius: 2px;
}

.section-title p {
  color: var(--gray);
  font-size: 16px;
  max-width: 700px;
  margin: 15px auto 0;
  line-height: 1.8;
}

/* ===== SERVICES CARDS (Home) ===== */
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 30px;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-card .card-img {
  overflow: hidden;
  position: relative;
}

.service-card .card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card:hover .card-img img {
  transform: scale(1.1);
}

.service-card .card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .card-img::after {
  opacity: 1;
}

.service-card .card-body {
  padding: 25px 20px 30px;
  text-align: center;
  position: relative;
}

.service-card .card-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card .card-body h3 a {
  color: var(--dark);
  text-decoration: none;
}

.service-card:hover .card-body h3 a {
  color: var(--primary);
}

.service-card .card-body p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.service-card .card-body .service-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 24px;
  color: #fff;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin: -55px auto 15px;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(116,191,2,0.4);
}

/* ===== STATS SECTION - FRESH LIGHT DESIGN ===== */
.stats-modern {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5faf0 0%, #eaf5de 30%, #f0f7e6 70%, #f5faf0 100%);
}

.stats-modern::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116,191,2,0.1), transparent 60%);
  animation: floatGlow 8s ease-in-out infinite;
}

.stats-modern::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116,191,2,0.07), transparent 60%);
  animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
}

.stat-glass {
  background: #ffffff;
  border: 1px solid rgba(116,191,2,0.15);
  border-radius: 20px;
  padding: 35px 20px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: 0.4s;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(116,191,2,0.08);
}

.stat-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.5s;
}

.stat-glass:hover::before {
  transform: scaleX(1);
}

.stat-glass:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(116,191,2,0.15);
}

.stat-glass .stat-number {
  font-size: 56px;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.stat-glass .stat-number span {
  font-size: 30px;
  color: var(--primary);
}

.stat-glass .stat-label {
  color: #555;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
  line-height: 1.5;
}

.stat-glass .stat-icon {
  font-size: 36px;
  margin-bottom: 15px;
  display: block;
  color: var(--primary);
  opacity: 0.5;
  transition: 0.4s;
}

.stat-glass:hover .stat-icon {
  opacity: 1;
  transform: scale(1.15);
}

/* ===== PARALLAX / CALL TO ACTION ===== */
.cta-section {
  background: var(--gradient-hero);
  padding: 80px 0;
  text-align: center;
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.85);
}

.cta-section > * {
  position: relative;
  z-index: 1;
}

.cta-section h4 {
  color: var(--primary);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn-custom {
  display: inline-block;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary-custom {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(116,191,2,0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(116,191,2,0.4);
  color: #fff;
  text-decoration: none;
}

.btn-outline-custom {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-custom:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-readmore {
  display: inline-block;
  padding: 8px 25px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(116,191,2,0.3);
}

.btn-readmore:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(116,191,2,0.4);
  color: #fff;
  text-decoration: none;
}

/* ===== ABOUT / CONTENT SECTIONS ===== */
.content-section {
  padding: 80px 0;
}

.content-section p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.content-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  width: 100%;
}

.content-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* ===== TEAM SECTION ===== */
.team-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 30px;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-card .team-img {
  overflow: hidden;
  height: 280px;
}

.team-card .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.team-card:hover .team-img img {
  transform: scale(1.08);
}

.team-card .team-info {
  padding: 20px;
}

.team-card .team-info h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
}

.team-card .team-info h6 {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  margin: 0;
}

/* ===== CLIENT LOGOS ===== */
.client-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  border: 1px solid var(--gray-light);
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.client-card img {
  max-width: 80%;
  max-height: 70px;
  filter: grayscale(50%);
  opacity: 0.8;
  transition: var(--transition);
}

.client-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ===== GALLERY ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item .gallery-overlay span {
  color: #fff;
  font-size: 32px;
}

/* ===== VIDEO THUMBNAILS ===== */
.video-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.video-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.video-card:hover img {
  transform: scale(1.05);
}

.video-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  background: rgba(116,191,2,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-card:hover .play-btn {
  background: var(--primary);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px rgba(116,191,2,0.5);
}

.video-card .play-btn .fa {
  color: #fff;
  font-size: 22px;
  margin-left: 3px;
}

/* ===== CONTACT PAGE ===== */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.contact-info-card .contact-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}

.contact-info-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.contact-info-card a:hover {
  color: var(--primary);
  text-decoration: none;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ===== FOOTER ===== */
.w3l-footer-29-main {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
}

.footer-29 {
  padding: 60px 0 30px;
}

.footer-title-29 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title-29::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-list-29 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list-29 ul li {
  margin-bottom: 10px;
}

.footer-list-29 ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.footer-list-29 ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-list-29 ul li p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-list-29 ul li .fa {
  color: var(--primary);
  margin-right: 8px;
}

.main-social-footer-29 {
  margin-top: 15px;
}

.main-social-footer-29 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  margin: 0 4px;
  transition: var(--transition);
}

.main-social-footer-29 a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.bottom-copies {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copy-footer-29 {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin: 0;
}

.copy-footer-29 a {
  color: var(--primary);
  text-decoration: none;
}

.list-btm-29 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.list-btm-29 li a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  text-decoration: none;
}

.list-btm-29 li a:hover {
  color: var(--primary);
}

/* ===== BACK TO TOP ===== */
#movetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(116,191,2,0.4);
  transition: var(--transition);
  display: none;
  z-index: 999;
}

#movetop:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(116,191,2,0.5);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SERVICE DETAIL PAGE LAYOUT ===== */
.service-detail-section {
  padding: 80px 0;
}

.service-detail-section .service-content {
  padding: 30px;
}

.service-detail-section .service-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.service-detail-section .service-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}

.service-detail-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  width: 100%;
}

.service-detail-img:hover {
  transform: scale(1.02);
}

/* ===== MARQUEE TICKER ===== */
.ticker-bar {
  background: var(--secondary);
  padding: 12px 0;
  color: #fff;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

.ticker-bar marquee {
  color: #fff;
}

.ticker-bar .star {
  color: #ffd700;
  margin: 0 10px;
}

.ticker-bar .highlight {
  color: var(--primary);
  font-weight: 600;
}

/* ===== HOME HERO ===== */
.hero-about-section {
  padding: 80px 0;
}

.hero-about-section h4 {
  color: var(--primary);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

.hero-about-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-about-section p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}

/* ===== GRADIENT TEXT UTILITY ===== */
.gradient-text {
  background: linear-gradient(135deg, #8ee01a, #74bf02, #5a9a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-light {
  background: linear-gradient(135deg, #fff, #a8e84a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== GLOSSY IMAGE WRAP ===== */
.glossy-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.glossy-wrap::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255,255,255,0.15) 45%,
    rgba(255,255,255,0.25) 50%,
    rgba(255,255,255,0.15) 55%,
    transparent 70%
  );
  animation: glossySweep 6s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes glossySweep {
  0% { transform: translate(-30%, -30%) rotate(25deg); }
  50% { transform: translate(30%, 30%) rotate(25deg); }
  100% { transform: translate(-30%, -30%) rotate(25deg); }
}

.glossy-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(0,0,0,0.3), transparent, rgba(116,191,2,0.1));
  z-index: 1;
  pointer-events: none;
}

.glossy-wrap img {
  width: 100%;
  display: block;
  transition: 0.7s;
}

.glossy-wrap:hover img {
  transform: scale(1.06);
}

/* ===== GLOSSY OVERLAY BADGE ===== */
.glossy-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 12px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  cursor: pointer;
  transition: 0.3s;
}

.glossy-badge:hover {
  background: rgba(116,191,2,0.3);
  border-color: rgba(116,191,2,0.5);
  transform: scale(1.05);
}

.glossy-badge .fa { font-size: 18px; }

/* ===== TICKER MODERN ===== */
.ticker-modern {
  background: linear-gradient(135deg, #0f0f1a, #1a1a2e);
  padding: 16px 0;
  border-top: 2px solid rgba(116,191,2,0.3);
  border-bottom: 2px solid rgba(116,191,2,0.3);
  position: relative;
}

.ticker-modern::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.ticker-modern marquee {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 400;
}

.ticker-modern .highlight {
  color: var(--primary);
  font-weight: 600;
}

.ticker-modern .star {
  color: #ffd700;
}

/* ===== PILL STYLE SERVICES - MODERN ===== */
.pill-services {
  padding: 90px 0;
  background: #fafcf8;
  position: relative;
}

.pill-service-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 28px 35px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid rgba(116,191,2,0.1);
  position: relative;
  overflow: hidden;
}

.pill-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.5s;
}

.pill-service-card:hover::before { transform: scaleX(1); }

.pill-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(116,191,2,0.15);
  border-color: rgba(116,191,2,0.3);
  background: #fff;
}

.pill-service-card .ps-icon {
  width: 72px;
  height: 72px;
  line-height: 72px;
  text-align: center;
  background: linear-gradient(135deg, #f0f7e6, #e0f0cc);
  border-radius: 22px;
  margin: 0 auto 22px;
  font-size: 32px;
  transition: 0.5s;
}

.pill-service-card:hover .ps-icon {
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 50%;
  transform: rotateY(180deg);
  box-shadow: 0 10px 30px rgba(116,191,2,0.3);
}

.pill-service-card .ps-icon-inner {
  display: inline-block;
  transition: 0.5s;
}

.pill-service-card:hover .ps-icon-inner {
  transform: rotateY(-180deg);
}

.pill-service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.pill-service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 18px;
}

.pill-service-card .ps-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
}

.pill-service-card .ps-link:hover { gap: 12px; color: var(--primary-dark); }

/* ===== GLIMPSES MODERN ===== */
.glimpses-modern {
  padding: 90px 0;
  background: #fafcf8;
}

.glimpse-modern-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  cursor: pointer;
}

.glimpse-modern-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.6s;
  display: block;
}

.glimpse-modern-item:hover img { transform: scale(1.12); }

.glimpse-modern-item .glimpse-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,26,0.8), transparent 50%);
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.glimpse-modern-item:hover .glimpse-overlay { opacity: 1; }

.glimpse-modern-item .glimpse-overlay span {
  color: #fff;
  font-size: 28px;
  opacity: 0.8;
}

/* ===== CTA BANNER MODERN ===== */
.cta-banner {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116,191,2,0.1), transparent 60%);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116,191,2,0.06), transparent 60%);
}

.cta-banner .cta-icon {
  width: 100px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.cta-banner .cta-icon img { width: 100%; }

.cta-banner h3 {
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.cta-banner h3 span {
  background: linear-gradient(135deg, #8ee01a, #74bf02);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

/* ===== CLIENT STRIP MODERN ===== */
.client-strip {
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}

.client-strip h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 35px;
}

.client-strip h3 span { color: var(--primary); }

.logo-strip {
  display: flex;
  gap: 50px;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}

.logo-strip:hover { animation-play-state: paused; }

.logo-strip .logo-item {
  flex: 0 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
}

.logo-strip .logo-item img {
  height: 70px;
  width: auto;
 /* filter: grayscale(1) brightness(1.2);
  opacity: 0.4;*/
  transition: 0.4s;
}

.logo-strip .logo-item:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-track { overflow: hidden; }

/* ===== ABOUT SHOWCASE ===== */
.about-showcase {
  padding: 100px 0 80px;
  position: relative;
}

.about-showcase .about-tag {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 10px;
}

.about-showcase h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-showcase h2 span {
  background: linear-gradient(135deg, #8ee01a, #5a9a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-showcase p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

/* ===== SECTION TITLE MODERN ===== */
.section-title.modern h2 {
  font-size: 38px;
  font-weight: 800;
}

.section-title.modern h2 span {
  background: linear-gradient(135deg, #8ee01a, #5a9a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== GLIMPSES / GALLERY GRID ===== */
.glimpses-grid {
  padding: 80px 0;
}

.glimpses-grid .glimpse-item {
  padding: 5px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.glimpses-grid .glimpse-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition-slow);
  border-radius: var(--radius-sm);
}

.glimpses-grid .glimpse-item:hover img {
  transform: scale(1.08);
  box-shadow: var(--shadow-md);
}

/* ===== "WE CREATE" SECTION ===== */
.we-create-section {
  background: var(--gradient-primary);
  padding: 60px 0;
}

.we-create-section h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.we-create-list {
  list-style: none;
  padding: 0;
}

.we-create-list li {
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 14px 30px;
  margin: 8px 0;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.we-create-list li:hover {
  background: rgba(255,255,255,0.25);
  transform: translateX(10px);
}

.we-create-list li::before {
  content: '✦';
  margin-right: 12px;
  color: rgba(255,255,255,0.8);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    padding: 10px 0 !important;
  }

  .section-title h1,
  .section-title h2 {
    font-size: 28px;
  }

  .page-banner .banheader {
    font-size: 32px;
  }

  .stat-item h3 {
    font-size: 36px;
  }

  .content-section {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .top_li1 {
    display: none !important;
  }

  .section-title h1,
  .section-title h2 {
    font-size: 24px;
  }

  .page-banner {
    min-height: 180px;
  }

  .page-banner .banheader {
    font-size: 26px;
  }

  .service-detail-section {
    padding: 40px 0;
  }

  .bottom-copies {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .list-btm-29 {
    justify-content: center;
  }

  .hero-about-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .w3l-top-menu-1 .accounts ul li {
    font-size: 12px;
  }

  .stat-item h3 {
    font-size: 28px;
  }
}
