body { margin:0; font-family:Arial; background:#ffffff; color:rgb(0, 0, 0); overflow-x:hidden; }
header { display:flex; justify-content:space-between; padding:20px 50px; background:#07152a; }
/* NAVBAR CONTAINER */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #0a0f1c; /* Dark premium background */
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* LOGO SECTION */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

/* LOGO TEXT */
.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.logo-text .mark {
    color: #00aaff; /* Blue color for MARK */
}
:root {
    --primary-blue: #0066ff;
    --dark-bg: #050505;
    --white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --glass: rgba(255, 255, 255, 0.05);
}

.hero-premium {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--dark-bg);
    overflow: hidden;
}

/* Single High-Quality Image Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('office-building.jpg'); /* Use your best image here */
    background-size: cover;
    background-position: center;
    filter: brightness(0.5); /* Professional dimming */
    transform: scale(1.1); /* Prep for a subtle zoom effect */
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}


/* Gradient Overlay for Text Readability */
.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.4) 50%, transparent 100%);
    z-index: 1;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Status Pill */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 100px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary-blue);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Hero Typography */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    letter-spacing: -3px;
    margin-bottom: 25px;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--white);
}

.serif-italic {
    font-family: 'Playfair Display', serif; /* Or any classic serif */
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    max-width: 600px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 45px;
}

/* CTA & Stats */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.btn-main {
    background: var(--primary-blue);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 30px;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.stat-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    line-height: 1.2;
}

/* NAV LINKS */
nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    margin-left: 30px;
    transition: 0.3s;
}

nav a:hover {
    color: #00aaff;
}
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: black;
  overflow: hidden;
}

.bg-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-image: url(home2.jpg);
  filter: brightness(1);
  transition: opacity 1s ease-in-out;
  opacity: 1;
}

.overlay {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* BUTTON */
.service-btn {
  margin-top: 15px;
  display: inline-block;
  padding: 10px 20px;
  background: #0077cc;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  height: 30px;
  width: 120px;
  text-align: center;
  font-size: 20px;
}

/* BUTTON ANIMATION */
.service-btn::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  background: #00b4ff;
  left: 0;
  top: 0;
  transition: 0.4s;
  z-index: 0;
}

.service-btn:hover::before {
  width: 100%;
}

.service-btn span {
  position: relative;
  z-index: 1;
}

.content-box {
  margin-left: 0;
  width: 100%;
  max-width: 650px;
  color: white;
  /* text-align: center; */
  transition: all 0.8s ease-in-out;
  transform: translateY(0);
  opacity: 1;
}

.content-box button{
  width: 200px;
  height: 75px;
  border-radius: 12px;
  background-color: lightblue;
  border: none;
  font-size: 25px;
}

.content-box p{
  font-size: 25px;  
}

.content-box h1{
  font-size: 50px;
}

/* These classes trigger the "Movement" */
.hidden {
  opacity: 0 !important;
  transform: translateY(20px);
}
.section { padding: 40px 20px; }
.section h2 { text-align:center; margin-bottom:40px; }

.trusted-section {
  color: black;
  text-align: center;
  padding: 60px 20px;
  background: #07152a;
}
.who-section {
  padding: 80px 20px;
  background: #f8f9fb;
}

.who-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Image */
.who-image {
  overflow: hidden;
  border-radius: 20px;
}

.who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.who-image:hover img {
  transform: scale(1.08);
}

/* Text */
.who-text {
  animation: fadeRight 1s ease forwards;
  opacity: 0;
}

.who-text h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.intro {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.who-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.who-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 25px;
  background: #00b4d8;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.who-btn:hover {
  background: #0096c7;
}

/* Animation */
@keyframes fadeRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Scroll Trigger */
.who-section.active .who-text {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .who-container {
    grid-template-columns: 1fr;
  }

  .who-text {
    text-align: center;
  }
}
.who-section {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
}

/* Dark overlay */
.overlay {
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  padding: 80px 20px;
}

.who-content {
  max-width: 800px;
  margin: auto;
  text-align: center;
  color: #fff;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.who-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.intro {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.who-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 15px;
}

.who-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #00b4d8;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.who-btn:hover {
  background: #0096c7;
}

/* Animation */
@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Trigger animation on scroll */
.who-section.active .who-content {
  opacity: 1;
}

.trust-line {
  font-size: 18px;
  margin-bottom: 20px;
  color: #000000;
}

.buttons {
  margin-bottom: 40px;
}

.btn {
  padding: 12px 25px;
  margin: 10px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.primary {
  background: #00aaff;
  color: rgb(0, 0, 0);
}

.secondary {
  border: 2px solid #00aaff;
  color: #00aaff;
}

.btn:hover {
  opacity: 0.8;
}

.trusted-section h3 {
  margin-bottom: 30px;
}

.impact {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  color: #fff;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.stat {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 15px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.5s;
}

.stat.show {
  opacity: 1;
  transform: translateY(0);
}

.stat:hover {
  transform: translateY(-10px) scale(1.05);
}

.stat h3 {
  font-size: 40px;
  background: linear-gradient(45deg, #00b4d8, #90e0ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.icon {
  font-size: 30px;
}
.logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.logos img {
  height: 40px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s;
}

.logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}


.process-section {
  padding: 80px 20px;
  text-align: center;
  background: #f8f9fb;
}

.process-section h2 {
  font-size: 50px;
}

.process-section p{
  font-size: 25px;
}

.subtitle {
  color: #777;
  margin-bottom: 40px;
}

.process-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.process-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  cursor: pointer;

}

/* Image */
.img-box {
  overflow: hidden;
}

.img-box img {

  width: 100%;
  
  height: 200px;
  object-fit:cover;
  transition: 0.8s;
}

/* Content */
.content {
  padding: 20px;
}

.content h3 {
  color: #00b4d8;
  margin-bottom: 5px;
}

.content h4 {
  margin-bottom: 10px;
}

.content p {
  font-size: 14px;
  color: #666;
}

/* Hover Animation */
.process-card:hover {
  transform: translateY(-35px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.process-card:hover img {
  transform: scale(1.1);
}

/* Optional Overlay Effect */
.process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,180,216,0.08);
  opacity: 0;
  transition: 0.4s;
}

.process-card:hover::after {
  opacity: 1;
}

.work-section {
  padding: 80px 20px;
  background: #f8f9fb;
}

.work-container {
  max-width: 1100px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Reverse layout */
.work-container.reverse {
  direction: rtl;
}

.work-container.reverse .work-text {
  direction: ltr;
}

/* Image */
.work-image {
  overflow: hidden;
  border-radius: 20px;
}

.work-image img {

  width: 100%;
  height: 400px  ;
  object-fit: cover;
  transition: 0.5s;
}

.work-image:hover img {
  transform: scale(1.08);
}

/* Text */
.work-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.intro {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.work-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.work-text ul {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
}

.work-text ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .work-container {
    grid-template-columns: 1fr;
  }

  .work-container.reverse {
    direction: ltr;
  }

  .work-text {
    text-align: center;
  }
}

.faq-section {
  padding: 80px 20px;
  background: #f8f9fb;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

/* Layout */
.faq-container {
  display: flex;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
  align-items: stretch;
}

/* Image */
.faq-image {
  flex: 1;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* Content */
.faq-content {
  flex: 1;
}

/* FAQ Item */
.faq-item {
  background: #9ae2f0;;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 16px;
}

/* Icon */
.icon {
  font-size: 22px;
  transition: 0.3s;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: 0.4s ease;
}

.faq-answer p {
  padding: 10px 0;
  color: #555;
  font-size: 14px;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 150px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

/* Hover */
.faq-item:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-image img {
    height: 300px;
  }
}

/* ===== COMPREHENSIVE RESPONSIVE DESIGN ===== */

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== TABLET (768px and below) ===== */
@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    padding: 15px 20px;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 16px;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0a0f1c;
    flex-direction: column;
    padding: 20px;
    display: none;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 15px;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  /* Container */
  .container {
    padding: 0 20px;
  }

  /* Hero Section */
  .hero-premium {
    height: 80vh;
  }

  .hero-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .btn-main {
    padding: 15px 30px;
    font-size: 14px;
  }

  .hero-stats {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 20px 0 0 0;
    padding-top: 20px;
  }

  .stat-num {
    font-size: 2rem;
  }

  /* Sections */
  .section {
    padding: 30px 20px;
  }

  .who-container {
    padding: 40px 20px;
  }

  .trusted-section {
    padding: 40px 20px;
  }

  .process-container {
    gap: 15px;
  }

  .process-card:hover {
    transform: translateY(-15px);
  }

  .work-container {
    gap: 30px;
    padding: 40px 20px;
  }

  .work-image img {
    height: 300px;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 30px;
  }

  .footer-col h3 {
    font-size: 20px;
  }

  .footer-col p {
    font-size: 14px;
  }

  /* FAQ */
  .faq-container {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }

  /* Stats */
  .stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .stat {
    padding: 20px;
  }

  .stat h3 {
    font-size: 28px;
  }

  .content-box {
    margin-left: 0;
    width: 100%;
  }

  .content-box h1 {
    font-size: 32px;
  }

  .content-box p {
    font-size: 16px;
  }

  .content-box button {
    width: 150px;
    height: 50px;
    font-size: 16px;
  }
}

/* ===== MOBILE (480px and below) ===== */
@media (max-width: 480px) {
  /* Navbar */
  .navbar {
    padding: 12px 15px;
  }

  .logo {
    gap: 8px;
  }

  .logo img {
    width: 35px;
    height: 35px;
  }

  .logo-text {
    font-size: 14px;
  }

  /* Hero */
  .hero-premium {
    height: 70vh;
    padding-top: 20px;
  }

  .hero-title {
    font-size: 1.5rem;
    letter-spacing: -1px;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .btn-main {
    padding: 12px 20px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    width: 100%;
    flex-direction: column;
    border: none;
    padding: 0;
    gap: 10px;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .stat-text {
    font-size: 0.7rem;
  }

  /* Container */
  .container {
    padding: 0 15px;
  }

  /* Sections */
  .section {
    padding: 20px 15px;
  }

  .section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .who-container {
    gap: 20px;
    padding: 20px 15px;
  }

  .who-text h2 {
    font-size: 22px;
  }

  .who-image {
    height: 250px;
  }

  .who-image img {
    height: 250px;
  }

  .who-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Process */
  .process-section {
    padding: 30px 15px;
  }

  .process-section h2 {
    font-size: 24px;
  }

  .process-section p {
    font-size: 16px;
  }

  .process-container {
    grid-template-columns: 1fr;
  }

  .process-card:hover {
    transform: translateY(-10px);
  }

  .img-box img {
    height: 150px;
  }

  .content h3 {
    font-size: 14px;
  }

  .content h4 {
    font-size: 16px;
  }

  .content p {
    font-size: 12px;
  }

  /* Work Section */
  .work-section {
    padding: 30px 15px;
  }

  .work-container {
    gap: 20px;
    padding: 20px 15px;
  }

  .work-image img {
    height: 250px;
  }

  .work-text h2 {
    font-size: 22px;
  }

  .work-text p {
    font-size: 14px;
  }

  /* FAQ */
  .faq-section {
    padding: 30px 15px;
  }

  .faq-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .faq-container {
    flex-direction: column;
  }

  .faq-question h3 {
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 12px;
  }

  /* Stats */
  .impact {
    padding: 40px 15px;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat {
    padding: 15px;
  }

  .stat h3 {
    font-size: 24px;
  }

  .stat:hover {
    transform: translateY(-5px) scale(1.02);
  }

  /* Content Box */
  .content-box {
    width: 100%;
    text-align: center;
  }

  .content-box h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .content-box p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .content-box button {
    width: 120px;
    height: 45px;
    font-size: 14px;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 20px 15px;
    gap: 20px;
  }

  .footer-logo {
    width: 120px;
  }

  .footer-col h3 {
    font-size: 18px;
  }

  .footer-col p {
    font-size: 13px;
  }

  .footer-col ul li a {
    font-size: 13px;
  }

  /* Buttons */
  .btn {
    padding: 10px 15px;
    margin: 8px 5px;
    font-size: 12px;
  }

  /* Floating buttons */
  .email-float,
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 80px;
  }

  .whatsapp-float {
    bottom: 20px;
  }

  .trusted-section h3 {
    font-size: 20px;
  }

  .logos {
    gap: 20px;
  }

  .logos img {
    height: 30px;
  }

  /* Status Pill */
  .status-pill {
    font-size: 0.7rem;
    padding: 6px 15px;
    margin-bottom: 20px;
  }
}

/* ===== EXTRA SMALL (under 360px) ===== */
@media (max-width: 360px) {
  .navbar {
    padding: 10px 12px;
  }

  .logo-text {
    font-size: 12px;
  }

  .hero-title {
    font-size: 1.2rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .btn-main {
    padding: 10px 15px;
    font-size: 11px;
  }

  .content-box h1 {
    font-size: 20px;
  }

  .content-box p {
    font-size: 13px;
  }

  .section h2 {
    font-size: 20px;
  }

  .container {
    padding: 0 12px;
  }

  .footer-col h3 {
    font-size: 16px;
  }
}

/* MAIN FOOTER */
.footer {
  background: #000; /* PURE BLACK */
  color: #fff;
  font-family: Arial, sans-serif;
  margin-top: 30px;
}

/* TOP CONTACT BAR */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 48px;
  padding: 20px;
  border-bottom: 1px solid #111;
  background: #050505;
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
}

.contact-box .icon {
  font-size: 24px;
  color: #00b4ff;
}

.email-float {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #099bf7;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  text-decoration: none;
  transition: all 0.4s ease;
}

/* Hover Effect */
.email-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Optional Pulse Animation */
.email-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 1.5s infinite;
  z-index: -1;
}

/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  padding: 50px 40px;
}

/* LOGO IMAGE CONTROL */
.footer-logo {
  width: 160px;
  margin-bottom: 15px;
  transition: 0.4s ease;
}

/* LOGO HOVER EFFECT */
.footer-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* HEADINGS */
.footer-col h3 {
  margin-bottom: 18px;
  font-size: 30px; /* BIGGER FONT */
}

/* TEXT */
.footer-col p {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 10px;
  transition: 0.3s;
}

/* ICON COLOR */
.footer-col .icon {
  margin-right: 8px;
  color: #00b4ff;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #aaa;
  font-size: 18px;
  transition: 0.3s;
}

/* HOVER BLUE EFFECT */
.footer-col ul li a:hover,
.footer-col p:hover {
  color: #00b4ff; /* BRIGHT BLUE */
}

/* SOCIALS */
.socials {
  margin-top: 15px;
}

.socials a {
  display: inline-block;
  margin-right: 10px;
  padding: 8px 12px;
  background: #111;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

/* SOCIAL HOVER */
.socials a:hover {
  background: #00b4ff;
  color: #000;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #111;
  font-size: 14px;
  color: #777;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  .contact-box {
    font-size: 16px;
    justify-content: center;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 28px;
  }

  .footer-col h3 {
    font-size: 20px;
  }

  .footer-col p,
  .footer-col ul li a {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .footer-top {
    gap: 12px;
    padding: 14px;
  }

  .contact-box {
    font-size: 14px;
  }

  .footer-logo {
    width: 120px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Optional Pulse Animation */
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 1.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

:root {
    --primary-blue: #007aff;
    --white: #ffffff;
    --dark: #0a0a0b;
    --light-gray: #f9fbff;
    --border: rgba(0, 122, 255, 0.1);
}

.service-ecosystem {
    padding: 140px 0;
    background-color: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

.header-content {
    text-align: center;
    margin-bottom: 80px;
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 15px;
}

.header-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.text-blue { color: var(--primary-blue); }

/* Bento Layout */
.bento-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.bento-box {
    background: var(--light-gray);
    border-radius: 32px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.bento-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 40px 80px rgba(0, 122, 255, 0.08);
    color: black;
}

/* AI Feature Styling (Full Width) */
.ai-feature {
    grid-column: span 2;
    background: var(--dark);
    color: var(--white);
}

.ai-bg-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.15) 0%, transparent 70%);
}

.box-index {
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 25px;
    display: block;
    opacity: 0.6;
}

.bento-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pill {
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary-blue);
    padding: 6px 14px;
    border-radius: 100px;
    margin-right: 8px;
    margin-top: 10px;
    display: inline-block;
}

/* Status Dot Pulse */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-blue);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.ai-item h5 { color: var(--primary-blue); margin-bottom: 10px; }
.ai-item p { font-size: 0.9rem; opacity: 0.7; }

/* Responsive Styling */
@media (max-width: 992px) {
    .bento-layout { grid-template-columns: 1fr; }
    .ai-feature { grid-column: span 1; }
    .ai-grid { grid-template-columns: 1fr; gap: 20px; }
}

