/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Top Bar */
.top-bar {
  background: #f9f9f9;
  border-bottom: 1px solid #e4e4e4;
  font-size: 0.9rem;
  padding: 8px 2%;
}

.top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-left span {
  margin-right: 20px;
  color: #666;
}

.book-btn {
  background-color: #8BC34A;
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(139, 195, 74, 0.3);
  transition: all 0.3s ease;
}

.book-btn:hover {
  background-color: #7CB342;
  box-shadow: 0 6px 18px rgba(139, 195, 74, 0.4);
}

/* Header */
.main-header {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 16px 2%;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo Group */
.logo-group {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 48px;
  height: 48px;
  margin-right: 12px;
}

.logo-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
}

.logo-text p {
  font-size: 0.85rem;
  color: #8BC34A;
  font-weight: 500;
}

/* Nav Menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-menu li a {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  height: 2px;
  width: 0;
  background: #8BC34A;
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  margin-left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    right: 2%;
    top: 100%;
    width: 200px;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

.services-hero-modern {
  position: relative;
  height: 100vh;
  background: #111;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  width: 100%;
  height: 100%;
  background-image: url('images/cheerful-business-colleagues-.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  text-align: center;
  max-width: 800px;
  margin: 0 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content .highlight {
  color: #96c93d;
}

.hero-content p {
  color: #ddd;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}





.services-section {
  padding: 6rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #555;
  max-width: 600px;
  margin: auto;
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.service-card {
  perspective: 1000px;
  height: 420px;
  position: relative;
}

.card-front,
.card-back {
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  height: 100%;
  position: absolute;
  width: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease;
  overflow-y: auto;
}

.card-front {
  background: linear-gradient(135deg, #1c1c1c, #2b2b2b);
  color: #fff;
  transform: rotateY(0deg);
  z-index: 2;
}

.card-front i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #96c93d;
}

.card-back {
  background: #96c93d;
  color: #fff;
  transform: rotateY(180deg);
  z-index: 1;
}

.service-card:hover .card-front {
  transform: rotateY(180deg);
}

.service-card:hover .card-back {
  transform: rotateY(360deg);
}

.card-back ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.card-back li {
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.card-back ul {
  list-style-type: disc; /* This adds bullet points */
  padding-left: 1.5rem; /* Indent bullets */
  text-align: left;
}

.card-back li {
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.4;
}




.site-footer {
  background-color: #1e1e1e;
  color: #eaeaea;
  padding: 4rem 2rem 2rem;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: #8dc63f;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col p,
.footer-col ul li {
  color: #bbb;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #8dc63f;
}

.footer-socials a {
  color: #bbb;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #8dc63f;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom span {
  color: #de0089;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }
}
