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 {
    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 */
}

/* NAV LINKS */
nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    margin-left: 30px;
    transition: 0.3s;
}

nav a:hover {
    color: #00aaff;
}
.services-hero {
  position: relative;
  height: 350px;
  background: url('services-head2.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0.7;
}

/* DARK OVERLAY FOR PROFESSIONAL LOOK */
.services-hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
}

/* TEXT CONTENT */
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
  animation: fadeUp 1s ease;
}

.hero-content h1 {
  font-size: 70px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 30px;
  color: #000000;
}

/* SIMPLE PROFESSIONAL ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* SERVICES GRID */
.services-section {
  padding: 80px 40px;
  background: #f4f8fc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.service-content {
  padding: 20px;
}

.service-content h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.service-content p {
  font-size: 14px;
  color: #555;
}

/* BUTTON */
.service-btn {
  margin-top: 15px;
  display: inline-block;
  padding: 10px 20px;
  background: #0077cc;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* 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;
}

/* WHY SECTION */
.why-services {
  padding: 80px 40px;
  background: #0a2540;
  color: #fff;
  text-align: center;
}

.why-services h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.why-boxes {
  display: flex;
  justify-content: center;
  gap:30px;
  flex-wrap: wrap;
}

.why-box {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 12px;
  width: 250px;
  transition: 0.3s;
}

.why-box:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-8px);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: auto;
}

/* PERFECT CENTER LINE */
.timeline::after {
  content: '';
  position: absolute;
  width: 3px;
  background: #0077cc;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px; /* exact center fix */
}

/* ITEMS */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 30px;
  box-sizing: border-box;
}

/* LEFT */
.timeline-item.left {
  left: 0;
  text-align: right;
}

/* RIGHT */
.timeline-item.right {
  left: 50%;
  text-align: left;
}

/* CONTENT BOX */
.timeline-content {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  position: relative;
  max-width: 90%;
}

/* FIX: PUSH BOX AWAY FROM LINE */
.timeline-item.left .timeline-content {
  margin-right: 40px;
}

.timeline-item.right .timeline-content {
  margin-left: 40px;
}

/* DOT */
.timeline-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #00b4ff;
  border-radius: 50%;
  top: 30px;
  z-index: 2;
}

/* DOT POSITION PERFECT */
.timeline-item.left::after {
  right: -8px;
}

.timeline-item.right::after {
  left: -8px;
}

.process h2{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
}
/* RESPONSIVE */
@media(max-width:768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* MAIN FOOTER */
.footer {
    margin-top: 20px;
  background: #000; /* PURE BLACK */
  color: #fff;
  font-family: Arial, sans-serif;
}

/* 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;
  }
}

@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;
  }
}

/* ===== 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;
    z-index: 999;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 15px;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  /* Hero Section */
  .services-hero {
    height: 250px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 18px;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 20px;
  }

  .services-section {
    padding: 40px 20px;
  }

  .service-card {
    margin-bottom: 15px;
  }

  .service-card:hover {
    transform: translateY(-10px);
  }

  .service-content h3 {
    font-size: 1.2rem;
  }

  .service-content p {
    font-size: 13px;
  }

  .service-btn {
    padding: 8px 15px;
    font-size: 12px;
  }

  /* Why Section */
  .why-services {
    padding: 40px 20px;
  }

  .why-services h2 {
    font-size: 1.8rem;
  }

  .why-boxes {
    gap: 15px;
    flex-direction: column;
  }

  .why-box {
    width: 100%;
  }

  /* Timeline */
  .timeline::after {
    left: 0;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding: 20px 20px 20px 40px;
  }

  .timeline-item::after {
    left: -8px;
  }

  .timeline-content {
    margin-right: 0 !important;
    margin-left: 0 !important;
    max-width: 100%;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 25px;
  }

  .footer-col h3 {
    font-size: 20px;
  }

  .footer-col p {
    font-size: 14px;
  }

  .footer-col ul li a {
    font-size: 14px;
  }

  .process h2 {
    font-size: 32px;
  }

  /* Floating buttons */
  .email-float,
  .whatsapp-float {
    width: 55px;
    height: 55px;
  }
}

/* ===== 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;
  }

  .menu-toggle span {
    width: 20px;
    height: 2.5px;
  }

  /* Hero Section */
  .services-hero {
    height: 180px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 14px;
  }

  /* Services Grid */
  .services-grid {
    gap: 15px;
    padding: 20px 15px;
  }

  .services-section {
    padding: 30px 15px;
  }

  .service-card img {
    height: 150px;
  }

  .service-content h3 {
    font-size: 1rem;
  }

  .service-content p {
    font-size: 12px;
  }

  .service-btn {
    padding: 8px 12px;
    font-size: 11px;
  }

  /* Why Section */
  .why-services {
    padding: 30px 15px;
  }

  .why-services h2 {
    font-size: 1.4rem;
  }

  .why-box {
    padding: 20px;
    width: 100%;
  }

  .process h2 {
    font-size: 24px;
  }

  .process h2 {
    font-size: 24px;
  }

  /* Footer */
  .footer-top {
    gap: 12px;
    padding: 12px;
  }

  .contact-box {
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 20px 12px;
    gap: 20px;
  }

  .footer-col h3 {
    font-size: 16px;
  }

  .footer-col p {
    font-size: 13px;
  }

  .footer-col ul li a {
    font-size: 13px;
  }

  /* Floating buttons */
  .email-float,
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 22px;
    right: 20px;
  }

  .email-float {
    bottom: 85px;
  }

  .whatsapp-float {
    bottom: 20px;
  }
}

/* ===== EXTRA SMALL (under 360px) ===== */
@media (max-width: 360px) {
  .navbar {
    padding: 10px 12px;
  }

  .logo-text {
    font-size: 12px;
  }

  .services-hero {
    height: 150px;
  }

  .hero-content h1 {
    font-size: 20px;
  }

  .services-section {
    padding: 20px 10px;
  }

  .services-grid {
    gap: 12px;
    padding: 0;
  }

  .service-card {
    border-radius: 12px;
  }

  .service-content h3 {
    font-size: 0.9rem;
  }

  .why-services h2 {
    font-size: 1.2rem;
  }

  .why-box {
    padding: 15px;
  }

  .footer-col h3 {
    font-size: 14px;
  }

  .footer-col p {
    font-size: 12px;
  }

  .process h2 {
    font-size: 18px;
  }
}