/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors*/
:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #012970;
  --accent-color: #28889d;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #012970;
  --nav-hover-color: #28889d;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #28889d;
}

:root {
  --card-w: 340px;
  --radius: 22px;
  --accent-h: 18px;
  /* thickness of horizontal bar */
  --accent-v: 18px;
  /* thickness of vertical bar */
  --accent-gap: 18px;
  /* inner offset from top/left so bars sit inset */
}

body {
  font-family: "Inter", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg);
  color: var(--secondary);
  scroll-behavior: smooth;
  overflow-x: hidden;
  padding-top: 64px; /* offset fixed-top navbar */
}

/* Navbar */
.navbar {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  margin: 0px;
  padding: 0px
}

.nav-item a:hover {
  color: var(--accent-color) !important;
}

.logo {
  height: 60px
}

.logo img {
  height: 60px
}

.logo h1 {
  font-size: 1.4rem;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  /* smaller on mobile */
}

@media (min-width: 768px) {

  
  .logo h1 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
    /* larger on desktop */
  }
}

a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
  /* remove browser blue */
  text-decoration: none !important;
  /* remove underline */
  -webkit-text-decoration-color: transparent !important;
  /* extra for WebKit */
  outline: none;
  /* only if you have alternate focus styles (see note) */
}

/* Hero */
.hero {
  background: linear-gradient(rgba(105, 105, 105, 0.5),
      /* overlay color */
      rgba(0, 0, 0, 0.5)),
    url('../img/hero3.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  /* Optional: Adjusts image size to cover the element */
  background-repeat: no-repeat;
  /* Optional: Prevents image repetition */
  background-position: center center;
  /* Optional: Centers the image */
}

.hero::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.hero h1 {
  font-size: 6.25rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

    /* Fullscreen hero carousel */
    .hero-carousel .carousel-item {
      height: 100vh;  /* full screen */
      min-height: 600px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    /* Optional dark overlay for readability */
    .hero-carousel .carousel-item::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.45);
    }

    /* Centered hero content */
    .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      text-align: center;
      z-index: 10;
      width: 90%;
      max-width: 900px;
    }


.btn-primary {
  background: var(--accent-color);
  border: none;
  transition: all 0.3s ease;
}

.btn-secondary {
  background: #34af03;
  border: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--accent-color);
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #0ea5e9;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

/* Services */
    .service-card {
      transition: transform 0.3s, box-shadow 0.3s;
      border: none;
      border-radius: 1rem;
      overflow: hidden;
    }
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }
    .service-icon {
      font-size: 3rem;
      color: #0d6efd;
      margin-bottom: 1rem;
    }
    .service-card h5 {
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .service-card p {
      color: #6c757d;
    }
    .services-section {
      padding: 6rem 0;
      background-color: #f8f9fa;
    }
    
/* Features */
.feature-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-8px);
  background-color: var(--accent-color);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

/* Pricing */
.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  background-repeat: round;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card h2 {
  font-size: 2.5rem;
  color: var(--primary);
}


.accent-color {
  color: var(--accent-color);
}

/* Contact */
#contact form {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}


.contact-card i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

footer {
  background: var(--bg);
  color: #2c2e31;
  padding: 50px 0;
}

footer a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
}

footer a:hover {
  color: #fff;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 10px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.social-links {
  display: flex;
  gap: 20px;
  /* space between icons */
  align-items: center;
  /* center vertically */
  margin: 20px 0;
  /* spacing from other elements */
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  /* border added */
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
  transition: 0.3s;
}

.social-links a:hover {
  background-color: #007bff;
  /* change background on hover */
  color: #fff;
  /* change icon color on hover */
  transform: scale(1.1);
  /* slight zoom effect */
}

/* Optional: individual brand colors */
.social-links a:nth-child(1):hover {
  background-color: #1DA1F2;
}

/* Twitter/X */
.social-links a:nth-child(2):hover {
  background-color: #1877F2;
}

/* Facebook */
.social-links a:nth-child(3):hover {
  background-color: #C13584;
}

/* Instagram */
.social-links a:nth-child(4):hover {
  background-color: #0077B5;
}

/* LinkedIn */

.lh-6s {
  line-height: 0.8
}

.whatsapp-fbtn {
  position: fixed;
  bottom: 20px;
  /* distance from bottom */
  right: 20px;
  /* distance from right */
  z-index: 1000;
  /* above other content */
  width: 60px;
  /* adjust size */
  height: 60px;
  background: transparent;
  /* makes it round */

}

.whatsapp-fbtn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: transparent;
}

.whatsapp-fbtn:hover {
  transform: scale(1.1);
  /* small pop on hover */
}


.plan-card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns */
  gap: 20px;
}

.plan-card {
  position: flex;
  flex-direction: column;
  width: 300px;
  height: 200px;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.plan-card-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* WhatsApp button */
.whatsapp-btn {
  align-self: end;
  gap: 10px;
  text-decoration: none;
  padding: 12px 12px;
  border-radius: 26px;

  color: #fff;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(106, 55, 230, 0.16);
  transition: transform .22s ease, box-shadow .22s ease;
}

@media (max-width: 760px) {
    .hero h1{
      font-size: 3.5rem;
  }
  
  .whatsapp-btn {
    align-self: end;
    gap: 10px;
    text-decoration: none;
    padding: 10px 10px 10px 10px;
    border-radius: 26px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(106, 55, 230, 0.16);
    transition: transform .22s ease, box-shadow .22s ease;
  }
}

.gradient-green {
  background: linear-gradient(90deg, #a3ceb5, #109848);
}

.gradient-blue {
  background: linear-gradient(90deg, #bad0ff, #6a37e6);
}

.gradient-purple {
  background: linear-gradient(90deg, #a992cf, #6a37e6);
}

.whatsapp-btn i {
  font-size: 1.05rem;
}

/* hover */
.plan-price-card:hover .whatsapp-btn {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(106, 55, 230, 0.22);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.stats {
  background: linear-gradient(
      rgba(105, 105, 105, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url('../img/stat-bg.jpg') center/cover no-repeat;

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed; /* ✅ parallax effect */
  overflow: visible;

  width: 100%;                  /* ensures full width */
  display: flex;                /* optional: for centering content */
  align-items: center;
  justify-content: center;
}
