/* -- CSS Variables -- */
:root {
  --bg-light: #414363;
  --bg-medium: #1a1a2e;
  --bg-dark: #0d0d1a;
  --text-primary: #ffffff;
  --text-secondary: #bdb7b7;
  --accent-main: #007bff;
  --accent-dark: #0056b3;
  --accent-light: #66b2ff;
}

/* -- General Body and Layout Styles -- */
body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-medium);
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevents horizontal scroll on small screens */
}

/* Custom scrollbar for a sleek look */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-main);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}

/* Utility classes for container and alignment */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container-center {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* -- Header and Navigation Styles -- */
.header {
  background-color: rgba(13, 13, 26, 0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2),
    0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 3rem;
  width: 3rem;
  border-radius: 9999px; /* rounded-full */
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.navigation {
  display: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-primary);
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-main);
}

.cta-button {
  background-color: var(--accent-main);
  color: var(--bg-dark);
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: var(--accent-dark);
  transform: scale(1.05);
}

/* -- Hero Section Styles -- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-image: url("logo.JPG");
  background-size: cover;
  background-position: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(
    to right,
    var(--accent-light),
    var(--accent-main)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  background-color: var(--accent-main);
  color: var(--bg-dark);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.hero-cta:hover {
  background-color: var(--accent-dark);
  transform: scale(1.05);
}

/* -- About Section Styles -- */
.about-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: var(--bg-light);
}

.section-container {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text p {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* -- Services Section Styles -- */
.services-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: var(--bg-medium);
}

.services-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

.service-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon {
  height: 4rem;
  width: 4rem;
  color: var(--accent-main);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--text-secondary);
}

.four {
  padding: 40px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.flex > div {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.flex > div:hover {
  transform: translateY(-5px);
}

.professional {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: rgb(31, 29, 29);
}

.professional .plans p,
.professional ul li {
  color: rgb(68, 67, 67);
}

.plans {
  text-align: center;
  margin-bottom: 20px;
  color: rgb(31, 29, 29);
}

.plans p:first-child {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.plans h3 {
  font-size: 2.5rem;
  margin: 15px 0;
  color: rgb(0, 128, 255);
}

.plans p:last-child {
  color: #666;
  margin-top: 10px;
}

.professional .plans p:last-child {
  color: rgba(88, 86, 86, 0.9);
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  padding: 10px 0;

  color: #555;
}

ul li:last-child {
  border-bottom: none;
}

.professional ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* -- Booking Section Styles -- */
.booking-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: var(--bg-light);
}

.form-container {
  background-color: var(--bg-medium);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.form-description {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* -- Footer Styles -- */
.footer {
  background-color: var(--bg-dark);
  padding: 2rem 0;
}

.footer p {
  text-align: center;
  color: #adb5bd;
}

/* -- Media Queries for Responsiveness -- */
@media (min-width: 768px) {
  .navigation {
    display: block;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .about-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}


  .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25D366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease-in-out;
            text-decoration: none;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
        }
        
        .whatsapp-float:active {
            transform: scale(0.95);
        }

          .whatsapp-float .tooltip {
            visibility: hidden;
            width: 140px;
            background-color: #333;
            color: #fff;
            text-align: center;
            border-radius: 6px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            right: 0;
            font-size: 14px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .whatsapp-float:hover .tooltip {
            visibility: visible;
            opacity: 1;
        }

          /* Mobile responsiveness */
        @media (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 24px;
            }
            
            .whatsapp-float .tooltip {
                width: 120px;
                font-size: 12px;
            }

        }


@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .flex {
    flex-direction: column;
    align-items: center;
  }

  .flex > div {
    width: 100%;
    max-width: 350px;
  }
}
