html,body{
  overflow-x: clip;
  max-width: 100vw;
}

body {
  font-family: 'Nunito', sans-serif;
  scroll-behavior: smooth;
  color: #333;
  background-color: #fff;
}

.icon-accent {
  color:#5ac8fa;
}

/* Section Headings */
.section-title {
  font-weight: 700;
  color: #5ac8fa;
}

/* Image Zoom on Hover (Hero & About) */
.img-wrapper {
  overflow: hidden;
  display: inline-block;
  border-radius: 20px;
}
.zoom-img {
  transition: transform 0.4s ease;
  display: block;
  width: 100%;
}
.img-wrapper:hover .zoom-img {
  transform: scale(1.15);
}

/* Navbar */
.custom-navbar {
  background-color: #f0f9ff;
  border-radius: 0 0 20px 20px;
  font-family: 'Poppins', sans-serif;
}
.custom-navbar .navbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
  color: #5ac8fa;
}
.custom-navbar .navbar-brand i {
  color: #ff8c94;
}
.custom-navbar .nav-link {
  color: #555;
  font-weight: 500;
  margin-left: 15px;
  transition: color 0.3s ease;
}
.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: #5ac8fa;
}
.custom-btn {
  background-color: #5ac8fa;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}
.custom-btn:hover {
  background-color: #4bb2e4;
}

/* Hero Section */
.hero-section {
  background-color: #fcefee;
  background-image: url('../images/clouds-bg.svg');
  padding: 80px 0;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}
.hero-subtext {
  font-size: 1.1rem;
  color: #555;
  margin-top: 10px;
  max-width: 500px;
}
.hero-img {
  max-width: 100%;
  border-radius: 20px;
}

/* About Section */
.about-section {
  background-color: #f0f9ff;
  background-image: url('../images/clouds-bg.svg');
  border-radius: 40px;
}
.section-description {
  font-size: 1.05rem;
  color: #555;
}
.social-icons a {
  font-size: 1.2rem;
  color: #5ac8fa;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #ff8c94;
}

/* Testimonials */
.testimonial-card {
  background-color: #fff;
  border-left: 6px solid #5ac8fa;
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}
.testimonial-text {
  font-size: 1rem;
  color: #444;
}
.testimonial-author {
  font-weight: 600;
  color: #5ac8fa;
}
.testimonial-stars i {
  margin-right: 2px;
}

/* Services */
.services-section {
  background-color: #fcefee;
  background-image: url('../images/clouds-bg.svg');
  border-radius: 40px;
}
.service-card {
  background-color: #fff;
  border: 2px solid #e3f2fd;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}
.service-text {
  color: #555;
  font-size: 0.95rem;
  margin-top: 10px;
}
.text-accent {
  color: #5ac8fa;
}

/* Team Section */
.team-section {
  background-color: #f0f9ff;
  background-image: url('../images/clouds-bg.svg');
  border-radius: 40px;
}
.team-card {
  background-color: #fff;
  transition: transform 0.3s ease;
  border: 2px solid #ffe3ea;
}
.team-card:hover {
  transform: translateY(-5px);
  border-color: #ff9eb4;
}
.team-name {
  font-weight: 600;
  color: #333;
}
.team-role {
  font-size: 0.95rem;
  color: #888;
}
.team-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
}
.team-more-info {
  font-size: 0.95rem;
  color: #555;
  transition: all 0.3s ease;
}
.arrow-icon {
  transition: transform 0.3s ease;
  color: #5ac8fa;
  font-size: 1.1rem;
}
.toggle-card[aria-expanded="true"] .arrow-icon {
  transform: rotate(180deg);
}

/* Contact Section */
.contact-section {
  background-color: #fcefee;
  background-image: url('../images/clouds-bg.svg');
  border-radius: 40px;
}
.contact-info,
.contact-form {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid #ffe4eb;
}

/* CONTACT SECTION SOCIAL ICONS */
.contact-info .social-icons a {
  color: #ff8c94;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact-info .social-icons a:hover {
  color: #5ac8fa;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #ffd6e0;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff8c94;
  box-shadow: none;
}

/* FOOTER SOCIAL ICONS */
.footer-section .social-icons a {
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.footer-section .social-icons a:hover {
  color: #5ac8fa;
}

/* FOOTER LINKS */
.footer-section a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: #5ac8fa;
}

/* Footer */
.footer-section {
  background: linear-gradient(to right, #ffafbd, #ffc3a0);
  color: #fff;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}
.footer-section h5,
.footer-section h6 {
  font-weight: 600;
}

