/* General section spacing and fonts */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding-top: 5px; /* space for fixed navbar */
  align-content: justify;
  background-color: #f9f9f9;
}

/* Nav Menu Styling */
.nav-menu a {
  font-size: 18px;
  left: 3px;
  bottom: 8px;
  padding: 10px 15px;
  margin: 8px 8px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  color: #333;
  background: linear-gradient(to right, #ffd700, #ff8c00);
  transition: background 0.5s ease, transform 0.3s ease;
  position: relative;
}
/* Hover Effect */
.nav-menu a:hover {
  background: linear-gradient(to right, #ff8c00, #ffd700);
  transform: scale(1.1);
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Underline Animation */
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 3px;
  width: 0;
  background: white;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}


.section {
  padding: 80px 20px;
  text-align: center;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.inline-image, .thumb {
  max-width: 100%;
  border-radius: 10px;
}


.logo {
  height: 50px;
}

/* Hero Section */
.bg-hero {
 background: linear-gradient(to right, #009fff, #ec2f4b);
  color: aqua;
  position: relative;
}
.hero {
  margin-top: 0;
}
.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 100px 20px;
}
.cta-btn {
  background: linear-gradient(135deg, #833AB4, #FD1D1D);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: rotate(0deg);
  animation: shimmer 2.5s infinite linear;
  z-index: 2;
  pointer-events: none;
}
/*about us section style*/
.bg-about {
  background: linear-gradient(to right, #ffe2e2, #fad0c4);
  padding: 3rem 2rem;
  text-align: center;
  color: #333;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bg-philosophy {
  background: linear-gradient(to right, #d4fc79, #96e6a1);
  padding: 3rem 2rem;
  color: #333;
  border-top-right-radius: 60px;
  border-bottom-left-radius: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bg-about h2,
.bg-philosophy h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c2c2c;
  background: linear-gradient(to right, #ff758c, #ff7eb3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.philosophy-box {
  max-width: 900px;
  margin: auto;
  background: rgba(255, 255, 255, 0.85);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.inline-image {
  width: 80%;
  border-radius: 12px;
  margin: 1rem auto;
  display: block;
}

@keyframes shimmer {
  0% { transform: rotate(0deg) translate(-100%, -100%); }
  100% { transform: rotate(360deg) translate(100%, 100%); }
}
.cta-btn:hover {
    transform: scale(1.05);
  background: #0077cc;
}
/* Remove bullets in philosophy section */
#about ul,
.bg-philosophy ul {
  list-style: none;
  background: linear-gradient(to right, #009fff, #ec2f4b);
  padding-left: 0;
  margin-left: 0;
}
.bg-philosophy ul li {
  margin-bottom: 10px;
}

/* Services Section */
.services{
    background: red;
}
.services-grid {
  display: grid;
  background: radial-gradient(circle,rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.service-card {
  background: linear-gradient(to right, #009fff, #ec2f4b);
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s ease;
}
.service-card:hover {
  transform: scale(1.03);
}
.thumb {
  height: 140px;
  width: 100%;
  object-fit: cover;
  margin-top: 10px;
}

/* Testimonials Section */
.bg-testimonials {
  background: linear-gradient(to right, #009fff, #ec2f4b);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.testimonial {
  background: white;
  padding: 25px;
  border-left: 5px solid #00aced;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.testimonial h4 {
  margin-top: 10px;
  font-weight: bold;
  color: #444;
}

/* Blog Section */
.bg-blog {
  background: #fdfdfd;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.blog-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
}
.blog-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
}
.blog-card p {
  font-size: 0.95rem;
  color: #444;
}
.blog-card a {
  display: inline-block;
  margin-top: 10px;
  color: #00aced;
  text-decoration: none;
  font-weight: bold;
}
.blog-card a:hover {
  color: #0077cc;
}

/* Contact Form */
.bg-contact {
  background: linear-gradient(to right, #ffffff, #e0f7ff);
}
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.contact-form input,
.contact-form textarea {
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.contact-form button {
  background: #00aced;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
.contact-form button:hover {
  background: #0077cc;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
 background: radial-gradient(circle,rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%);
  color: white;
  font-size: 0.9rem;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    color: #333;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 999;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }

  .nav-menu a {
    padding: 15px;
    margin: 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid #eee;
    background: white;
  }

  .nav-menu.active {
    display: flex;
  }

  .logo {
    height: 40px;
  }
}
/* Sticky Navbar */
.sticky {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Hamburger Animation */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    position: absolute;
    top: 70px;
    left: 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }

  .nav-menu a {
    padding: 15px;
    margin: 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid #eee;
  }

  .nav-menu.active {
    display: flex;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

.whatsapp-float {
  animation: bounce 2s infinite;
}
