@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #ffffff;
  --primary-dark: #30318c;
  --primary-light: #e8f0fe;
  --accent: #FF7F00;
  --accent-dark: #e67300;
  --accent-light: #ffb366;
  --gradient-1: linear-gradient(135deg, #30318c 0%, #3b3da6 100%);
  --gradient-2: linear-gradient(135deg, #FF7F00 0%, #e67300 100%);
  --gradient-3: linear-gradient(135deg, #FF7F00 0%, #f59e0b 100%);
  --gradient-4: linear-gradient(135deg, rgba(255,127,0,0.12) 0%, rgba(255,127,0,0.04) 100%);
  --glass: rgba(255,255,255,0.95);
  --glass-border: rgba(0,0,0,0.06);
  --text-light: #ffffff;
  --text-muted: #64748b;
  --text-dark: #30318c;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.10);
  --shadow-glow: 0 0 40px rgba(255,127,0,0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background: #fff;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; line-height: 1.2; }
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }
.container { max-width: 1280px; }
section { position: relative; }

/* Loading Screen */
#loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--primary-dark); display: flex;
  align-items: center; justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-molecule { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 24px; }
.loader-atom {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent); animation: loaderPulse 1.4s ease-in-out infinite;
}
.loader-atom:nth-child(1) { animation-delay: 0s; }
.loader-atom:nth-child(2) { animation-delay: 0.2s; }
.loader-atom:nth-child(3) { animation-delay: 0.4s; }
.loader-atom:nth-child(4) { animation-delay: 0.6s; }
.loader-atom:nth-child(5) { animation-delay: 0.8s; }
@keyframes loaderPulse {
  0%,80%,100% { transform: scale(0.6); opacity: 0.3; }
  40% { transform: scale(1.2); opacity: 1; }
}
.loader-text { color: var(--text-light); font-size: 14px; letter-spacing: 4px; text-transform: uppercase; opacity: 0.6; }

/* Navbar */
.navbar-main {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  padding: 12px 0; transition: var(--transition);
  background: transparent;
}
.navbar-main.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); padding: 6px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.navbar-main .navbar-brand img { height: 50px; transition: var(--transition); }
.navbar-main.scrolled .navbar-brand img { height: 42px; }
.navbar-main .nav-link {
  color: var(--primary-dark) !important; font-weight: 500; font-size: 14px;
  padding: 8px 16px !important; position: relative; letter-spacing: 0.3px;
  transition: var(--transition);
}
.navbar-main .nav-link:hover, .navbar-main .nav-link.active { color: var(--accent) !important; }
.navbar-main .nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 2px; background: var(--accent); transform: scaleX(0);
  transition: transform 0.3s; transform-origin: center;
}
.navbar-main .nav-link:hover::after, .navbar-main .nav-link.active::after { transform: scaleX(1); }
.navbar-main .dropdown-menu {
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-sm);
  padding: 8px; margin-top: 8px; box-shadow: var(--shadow-lg);
}
.navbar-main .dropdown-item {
  color: var(--primary-dark); font-size: 13px; padding: 10px 16px;
  border-radius: 6px; transition: var(--transition);
}
.navbar-main .dropdown-item:hover { background: var(--gradient-4); color: var(--accent); transform: translateX(4px); }
.navbar-main .dropdown-submenu .dropdown-menu { margin-left: 4px; }
.navbar-main .dropdown-submenu:hover > .dropdown-menu { display: block; }
.navbar-main .nav-cta {
  background: var(--gradient-2); color: #fff !important; border-radius: 50px;
  padding: 10px 24px !important; font-weight: 600;
}
.navbar-main .nav-cta::after { display: none; }
.navbar-main .nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.navbar-toggler { border: none; padding: 0; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler .hamburger { width: 28px; height: 20px; position: relative; display: flex; flex-direction: column; justify-content: space-between; }
.navbar-toggler .hamburger span {
  display: block; width: 100%; height: 2px; background: var(--primary-dark);
  border-radius: 2px; transition: var(--transition);
}

/* Mega Menu */
.mega-menu { position: static !important; }
.mega-menu .dropdown-menu {
  width: 95%; left: 2.5%; right: 2.5%; padding: 24px;
  border-radius: var(--radius); margin-top: 0;
}
.mega-menu-col h6 { color: var(--accent); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.mega-menu-col .mega-link {
  display: block; color: var(--primary-dark); font-size: 13px;
  padding: 6px 0; transition: var(--transition); opacity: 0.75;
}
.mega-menu-col .mega-link:hover { color: var(--accent); opacity: 1; padding-left: 6px; }

/* Hero Section */
.hero-section {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 100%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-particle {
  position: absolute; width: 4px; height: 4px; background: var(--accent);
  border-radius: 50%; opacity: 0; animation: floatParticle 8s infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  20% { opacity: 0.6; }
  80% { opacity: 0.6; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}
.hero-molecule {
  position: absolute; width: 60px; height: 60px;   border: 2px solid rgba(255,127,0,0.15);
  border-radius: 50%; pointer-events: none; animation: rotateMolecule 20s linear infinite;
}
.hero-molecule::before {
  content: ''; position: absolute; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%; top: 50%; left: 50%;
  transform: translate(-50%,-50%); opacity: 0.3;
}
.hero-molecule::after {
  content: ''; position: absolute; width: 100%; height: 2px;
  background: rgba(255,127,0,0.1); top: 50%; transform: translateY(-50%) rotate(60deg);
}
@keyframes rotateMolecule { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient-4); border: 1px solid rgba(255,127,0,0.2);
  padding: 8px 20px; border-radius: 50px; color: var(--accent);
  font-size: 13px; font-weight: 500; margin-bottom: 24px;
}
.hero-badge i { font-size: 12px; }
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800;
  color: var(--primary-dark); line-height: 1.1; margin-bottom: 20px;
}
.hero-title .highlight { background: var(--gradient-2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-muted);
  max-width: 600px; line-height: 1.8; margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary-custom {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient-2); color: #fff; padding: 16px 36px;
  border-radius: 50px; font-weight: 600; font-size: 15px;
  border: none; transition: var(--transition); cursor: pointer;
}
.btn-primary-custom:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); color: #fff; }
.btn-outline-custom {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--primary-dark); padding: 16px 36px;
  border-radius: 50px; font-weight: 600; font-size: 15px;
  border: 2px solid var(--primary-dark); transition: var(--transition); cursor: pointer;
}
.btn-outline-custom:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.hero-stats {
  display: flex; gap: 40px; margin-top: 50px;
  padding-top: 40px; border-top: 1px solid #e2e8f0;
}
.hero-stat h3 { font-size: 2rem; color: var(--primary-dark); margin-bottom: 4px; }
.hero-stat h3 .counter { display: inline; }
.hero-stat p { color: var(--text-muted); font-size: 13px; margin: 0; }

/* Section Headers */
.section-header {
  text-align: center; margin-bottom: 60px; position: relative;
}
.section-header .subtitle {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient-4); color: var(--accent);
  padding: 8px 20px; border-radius: 50px; font-size: 13px;
  font-weight: 600; margin-bottom: 16px; border: 1px solid rgba(255,127,0,0.2);
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--text-dark);
  margin-bottom: 16px; position: relative;
}
.section-header h2 .highlight { color: var(--accent); }
.section-header p {
  color: var(--text-muted); max-width: 600px; margin: 0 auto;
  font-size: 1.05rem; line-height: 1.7;
}
.section-header.light h2 { color: var(--text-light); }
.section-header.light p { color: rgba(255,255,255,0.6); }

/* Section Spacing */
.section-padding { padding: 100px 0; }

/* About Section */
.about-section { background: #fff; }
.about-image-wrapper {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
}
.about-image-wrapper img { width: 100%; height: 450px; object-fit: cover; border-radius: var(--radius-lg); }
.about-image-wrapper .experience-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gradient-2); color: #fff; padding: 24px;
  border-radius: var(--radius); text-align: center; min-width: 140px;
  box-shadow: var(--shadow-lg);
}
.about-image-wrapper .experience-badge h3 { font-size: 2.2rem; margin: 0; color: #fff; }
.about-image-wrapper .experience-badge p { font-size: 12px; margin: 4px 0 0; opacity: 0.9; }
.about-content { padding-left: 40px; }
.about-content h2 { font-size: 2.2rem; margin-bottom: 20px; }
.about-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.about-feature {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: var(--gradient-4);
  border-radius: var(--radius-sm); border: 1px solid rgba(255,127,0,0.1);
}
.about-feature i { color: var(--accent); font-size: 18px; }
.about-feature span { font-weight: 500; font-size: 14px; }

/* Stats Counter */
.stats-section {
  background: var(--primary-dark); position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-4); opacity: 0.5;
}
.stat-item { text-align: center; padding: 40px 20px; position: relative; }
.stat-item .stat-icon {
  width: 70px; height: 70px; margin: 0 auto 20px;
  background: var(--gradient-4); border: 1px solid rgba(255,127,0,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--accent);
  transition: var(--transition);
}
.stat-item:hover .stat-icon { transform: scale(1.1); background: var(--gradient-2); color: #fff; }
.stat-item h3 { font-size: 2.8rem; color: var(--text-light); margin-bottom: 4px; }
.stat-item h3 .counter { display: inline; }
.stat-item h3 .suffix { font-size: 1.8rem; }
.stat-item p { color: rgba(255,255,255,0.6); font-size: 14px; margin: 0; }

/* Products Section */
.products-section { background: #f8fafc; }
.product-filters {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px;
}
.product-filters .filter-btn {
  padding: 10px 24px; border-radius: 50px; border: 2px solid #e2e8f0;
  background: #fff; color: var(--text-dark); font-weight: 500; font-size: 14px;
  cursor: pointer; transition: var(--transition);
}
.product-filters .filter-btn:hover, .product-filters .filter-btn.active {
  background: var(--gradient-2); color: #fff; border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border: 1px solid #f1f5f9; position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card .product-image {
  height: 240px; overflow: hidden; position: relative;
  background: var(--gradient-4);
}
.product-card .product-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: var(--transition);
}
.product-card:hover .product-image img { transform: scale(1.1); }
.product-card .product-image .product-icon {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; font-size: 48px; color: var(--accent);
  background: linear-gradient(135deg, rgba(48,49,140,0.7), rgba(48,49,140,0.7));
  opacity: 0; transition: var(--transition);
}
.product-card:hover .product-image .product-icon { opacity: 1; }
.product-card .product-body { padding: 24px; }
.product-card .product-body .product-category {
  font-size: 12px; color: var(--accent); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px;
}
.product-card .product-body h5 { font-size: 18px; margin-bottom: 8px; }
.product-card .product-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.product-card .product-body .product-meta {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;
}
.product-card .product-body .product-meta span {
  font-size: 12px; padding: 4px 12px; border-radius: 50px;
  background: var(--gradient-4); color: var(--accent); font-weight: 500;
}
.product-card .product-body .btn-link-custom {
  color: var(--accent); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.product-card .product-body .btn-link-custom:hover { gap: 12px; }

/* Industries Section */
.industries-section { background: #fff; }
.industry-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: 320px; cursor: pointer; transition: var(--transition);
}
.industry-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.industry-card:hover img { transform: scale(1.1); }
.industry-card .industry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(48,49,140,0.95) 100%);
  transition: var(--transition);
}
.industry-card:hover .industry-overlay { background: linear-gradient(180deg, rgba(48,49,140,0.3) 0%, rgba(48,49,140,0.95) 100%); }
.industry-card .industry-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 30px;
  transform: translateY(0); transition: var(--transition);
}
.industry-card:hover .industry-content { transform: translateY(-10px); }
.industry-card .industry-content .industry-icon {
  width: 50px; height: 50px; background: var(--glass);
  backdrop-filter: blur(10px); border: 1px solid var(--glass-border);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 20px; color: var(--accent); margin-bottom: 16px;
}
.industry-card .industry-content h5 { color: var(--text-light); font-size: 18px; margin-bottom: 8px; }
.industry-card .industry-content p { color: rgba(255,255,255,0.6); font-size: 13px; margin: 0; }

/* Why Choose Us */
.why-section {
  background: var(--primary-dark); position: relative; overflow: hidden; padding: 100px 0;
}
.why-section::before {
  content: ''; position: absolute; width: 400px; height: 400px;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,127,0,0.08), transparent);
  top: -200px; right: -200px;
}
.why-section::after {
  content: ''; position: absolute; width: 300px; height: 300px;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,127,0,0.05), transparent);
  bottom: -150px; left: -150px;
}
.why-card {
  background: #fff; backdrop-filter: blur(10px);
  border: 1px solid #f1f5f9; border-radius: var(--radius);
  padding: 36px 28px; text-align: center; transition: var(--transition);
  position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient-2);
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: var(--shadow-md); }
.why-card .why-icon {
  width: 70px; height: 70px; margin: 0 auto 20px;
  background: var(--gradient-4); border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--accent); transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--gradient-2); color: #fff; transform: rotate(10deg) scale(1.1); }
.why-card h5 { color: var(--primary-dark); font-size: 18px; margin-bottom: 12px; }
.why-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin: 0; }

/* Infrastructure Section */
.infrastructure-section { background: #f8fafc; }
.infrastructure-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: 300px; transition: var(--transition);
}
.infrastructure-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.infrastructure-card:hover img { transform: scale(1.1); }
.infrastructure-card .infra-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(48,49,140,0.9) 100%);
  padding: 30px; display: flex; flex-direction: column; justify-content: flex-end;
}
.infrastructure-card .infra-overlay h5 { color: var(--text-light); font-size: 18px; margin-bottom: 6px; }
.infrastructure-card .infra-overlay p { color: rgba(255,255,255,0.6); font-size: 13px; margin: 0; }

/* Testimonials Section */
.testimonials-section {
  background: #f8fafc; position: relative;
}
.testimonial-card {
  background: #fff; border: 1px solid #f1f5f9; border-radius: var(--radius);
  padding: 40px; transition: var(--transition); box-shadow: var(--shadow-sm);
}
.testimonial-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card .testimonial-stars { color: #ffc107; margin-bottom: 16px; }
.testimonial-card p { color: var(--text-dark); font-size: 15px; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-card .testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-card .testimonial-author img {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--accent);
}
.testimonial-card .testimonial-author h6 { color: var(--primary-dark); margin-bottom: 2px; font-size: 15px; }
.testimonial-card .testimonial-author span { color: var(--text-muted); font-size: 13px; }
.swiper-pagination-bullet { background: var(--accent) !important; opacity: 0.4; }
.swiper-pagination-bullet-active { opacity: 1; }

/* CTA Section */
.cta-section {
  background: var(--gradient-2); position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; width: 500px; height: 500px;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.15), transparent);
  top: -250px; left: -100px;
}
.cta-section::after {
  content: ''; position: absolute; width: 400px; height: 400px;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
  bottom: -200px; right: -100px;
}
.cta-content { position: relative; z-index: 2; text-align: center; padding: 60px 0; }
.cta-content h2 { color: var(--text-light); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; }

/* Contact Section */
.contact-section { background: #fff; }
.contact-info-card {
  background: #fff; border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid #f1f5f9;
  transition: var(--transition); height: 100%;
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-info-card .contact-icon {
  width: 56px; height: 56px; background: var(--gradient-4);
  border-radius: 16px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; color: var(--accent);
  margin-bottom: 16px;
}
.contact-info-card h5 { font-size: 16px; margin-bottom: 8px; }
.contact-info-card p { color: var(--text-muted); font-size: 14px; margin: 0; line-height: 1.7; }
.contact-form-wrapper {
  background: #fff; border-radius: var(--radius); padding: 48px;
  box-shadow: var(--shadow-sm); border: 1px solid #f1f5f9;
}
.contact-form-wrapper .form-control, .contact-form-wrapper .form-select {
  padding: 14px 18px; border-radius: var(--radius-sm); border: 2px solid #e2e8f0;
  font-size: 14px; transition: var(--transition);
}
.contact-form-wrapper .form-control:focus, .contact-form-wrapper .form-select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255,127,0,0.1);
}

/* Footer */
.footer {
  background: #30318c; color: rgba(255,255,255,0.7);
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient-2);
}
.footer h5 { color: var(--text-light); font-size: 16px; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer h5::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px; background: var(--accent);
}
.footer p { font-size: 14px; line-height: 1.8; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.footer ul li a:hover { color: var(--accent); padding-left: 6px; }
.footer .footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.footer .footer-contact li i { color: var(--accent); font-size: 16px; margin-top: 2px; }
.footer .footer-contact li span { font-size: 14px; }
.footer .social-links { display: flex; gap: 10px; margin-top: 20px; }
.footer .social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 16px; transition: var(--transition);
}
.footer .social-links a:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-3px); }
.footer .newsletter-form { display: flex; gap: 8px; margin-top: 16px; }
.footer .newsletter-form input {
  flex: 1; padding: 12px 16px; border-radius: 50px; border: 1px solid var(--glass-border);
  background: var(--glass); color: #fff; font-size: 14px; outline: none;
}
.footer .newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer .newsletter-form button {
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: var(--gradient-2); color: #fff; font-size: 18px;
  cursor: pointer; transition: var(--transition);
}
.footer .newsletter-form button:hover { transform: scale(1.1); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0;
  margin-top: 40px; font-size: 13px;
}
.footer-bottom a { color: var(--accent); }

/* Back to Top */
#back-to-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gradient-2); color: #fff; border: none;
  font-size: 20px; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: var(--transition); box-shadow: var(--shadow-glow);
}
#back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-4px); box-shadow: 0 0 40px rgba(255,127,0,0.4); }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed; bottom: 30px; left: 30px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; border: none;
  font-size: 26px; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: var(--transition); animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
@keyframes whatsappPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); } 70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* Page Header */
.page-header {
  background: #fff; padding: 140px 0 80px; position: relative; overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-4); opacity: 0.3;
}
.page-header h1 { color: var(--primary-dark); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-header .breadcrumb { background: transparent; padding: 0; margin: 0; }
.page-header .breadcrumb-item { color: var(--text-muted); font-size: 14px; }
.page-header .breadcrumb-item a { color: var(--accent); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }
.page-header .breadcrumb-item.active { color: var(--primary-dark); }

/* Mouse Glow Effect */
.mouse-glow {
  position: fixed; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,127,0,0.06), transparent 70%);
  pointer-events: none; z-index: 9998; transform: translate(-50%, -50%);
  transition: opacity 0.3s; opacity: 0;
}
.mouse-glow.visible { opacity: 1; }

/* AOS Overrides */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* Breadcrumb Schema */
.breadcrumb-schema { display: none; }

/* Inquiry Modal */
.inquiry-modal .modal-content {
  background: #fff; border-radius: var(--radius-lg); border: none;
  overflow: hidden;
}
.inquiry-modal .modal-header {
  background: var(--gradient-2); color: var(--text-light);
  padding: 24px 32px; border: none;
}
.inquiry-modal .modal-body { padding: 32px; }
.inquiry-modal .btn-close { filter: brightness(0) invert(1); }

/* Responsive */
@media (max-width: 991px) {
  .navbar-main .navbar-collapse {
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    border-radius: var(--radius); padding: 16px; margin-top: 12px;
    border: 1px solid var(--glass-border);
  }
  .about-content { padding-left: 0; margin-top: 30px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .mega-menu .dropdown-menu { width: 100%; left: 0; }
}
@media (max-width: 767px) {
  .section-padding { padding: 60px 0; }
  .hero-content { padding: 100px 0 60px; }
  .hero-title { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary-custom, .hero-buttons .btn-outline-custom { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: row; gap: 16px; justify-content: space-between; }
  .hero-stat h3 { font-size: 1.5rem; }
  .about-image-wrapper .experience-badge { right: 10px; bottom: 10px; padding: 16px; min-width: 100px; }
  .about-image-wrapper .experience-badge h3 { font-size: 1.5rem; }
  .about-features { grid-template-columns: 1fr; }
  .stat-item { padding: 20px; }
  .stat-item h3 { font-size: 2rem; }
  .contact-form-wrapper { padding: 24px; }
  .footer .newsletter-form { flex-direction: column; }
  .footer .newsletter-form button { width: 100%; border-radius: 50px; }
  .industry-card { height: 240px; }
  .infrastructure-card { height: 220px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { flex: 1 1 40%; }
}
