:root {
  --dark-blue: #0d3b66;
  --light-blue: #1d9bf0;
  --green: #1db954;
  --white: #ffffff;
  --gray: #f8f9fa;
} 
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  color: var(--text);
}

body {
  font-family: 'Poppins', sans-serif;
}
/* General Reset */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--gray);
  color: #333;
}

a {
  text-decoration: none;
}
.navbar-brand img {
  border: 2px solid #ffffff;
  background-color: #ffffff;
}

.nav-link:hover,
.dropdown-item:hover {
  color: #90caf9 !important;
}

.navbar-toggler {
  border-color: #ffffff;
}
.navbar {
  background-color: var(--dark-blue) !important;
}
.nav-link {
  color: white !important;
  transition: all 0.3s ease;
}
/* Thinner Navbar */
.navbar {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
/* Reduce logo size slightly */
.navbar-brand img {
  width: 55px;
  height: 55px;
}
/* Adjust brand text slightly smaller */
.navbar-brand span {
  font-size: 1.3rem;
}
/*
.nav-link:hover {
  color: var(--green) !important;
}*/

.btn-green {
  background-color: var(--green);
  color: white;
}

.btn-green:hover {
  background-color: #17a34a;
}

.hero-section {
  position: relative;
}

.hero-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 500px;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.hero-text p {
  font-size: 1.2rem;
}

.card {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

footer a {
  color: white;
}

footer a:hover {
  text-decoration:underline;
}
.pricing-title {
  color: #0d3b66;
}
h1, h2, h3, h4, h5 {
  font-weight: 700;
}

.text-primary {
  color: #0d3b66 !important;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}


@media (max-width: 768px) {
  .hero-text {
    position: static;
    transform: none;
    padding: 1rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .hero-section img {
    max-height: 300px;
  }
}
.pricing-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.dropdown-menu {
  background-color: #e9f3ff;
  border: none;
}
.dropdown-item:hover {
  background-color: #d0e7ff;
  color: #0056b3;
}
.card-title {
  font-size: 1.1rem;
}
.card-subtitle {
  font-size: 1rem;
}
#testimonials .carousel-inner {
  transition: transform 0.6s ease;
}

#testimonials .card {
  background-color: white;
  border-radius: 10px;
}
.card-img-top {
  max-height: 120px;
  object-fit: contain;
}
.card {
  border-radius: 10px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.card .custom-img {
  max-height: 180px;
  object-fit: contain;
}

.card-body {
  padding: 1rem 0.5rem;
}

.card-title {
  font-size: 1.3rem;
}

.card ul {
  font-size: 1.05rem;
}
/*** Service ***/
.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}
.service-box {
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.text-success {
  color: #2ecc71 !important; /* or your custom green like #2ecc71 */
}
#icon:hover{
    color: var(--green) !important;
    transition: background-color 0.3s ease;
}
/*.footer-link:hover {
  color: var(--green) !important;
}
/* Smooth fade and slide-up animation */
.animated-section .about-image,
.animated-section .about-text {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* When section is in viewport, animate in */
.animated-section.animate .about-image,
.animated-section.animate .about-text {
  opacity: 1;
  transform: translateY(0);
}

