:root {
  --primary-gradient: linear-gradient(45deg, #ed5123, #ff7f50);
  --secondary-gradient: linear-gradient(45deg, #79787a, #b0b0b0);
  --white-color: #fff;
}

body {
  font-family: 'Arial', sans-serif;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
}

/* Logo Zoom Effect */
.logo {
  transition: transform 0.5s ease;
}

.navbar-brand:hover .logo {
  transform: scale(1.2);
}

/* Navbar Links Styling */
.navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  color: #555;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(45deg,#ed5123,#ff7f50);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  transform: scale(1.1);
  background: linear-gradient(45deg,#ed5123,#ff7f50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Active Link */
.navbar-nav .nav-link.active {
  background: linear-gradient(45deg,#ed5123,#ff7f50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navbar Background on Scroll */
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 5px 0 !important;
  transition: all 0.3s ease;
}

/* Navbar Toggler (Mobile) */
.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .navbar-nav {
    text-align: center;
    margin-top: 15px;
  }

  .navbar-nav .nav-link {
    margin: 10px 0;
  }
}


/* Sticky Navbar Shadow on Scroll */
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 5px 0 !important;
  transition: all 0.3s ease;
}


/* Slider / Hero Section */
.carousel-item {
  height: 60vh;
  background-size: cover;
  background-position: center center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.carousel-overlay {
  background: rgba(0,0,0,0.45);
  padding: 30px 35px;
  border-radius: 12px;
  max-width: 600px;
  color: #fff;
  margin-left: 50px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.hero-btn {
  background: var(--primary-gradient);
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
}

/* Carousel controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.4);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 40px;
}




/* Testimonials */
.testimonial {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: 0.3s;
}

.testimonial:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Contact */
.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 12px;
  width: 100%;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ed5123;
  box-shadow: 0 0 5px rgba(237,81,35,0.4);
  outline: none;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: var(--primary-gradient);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  opacity: 0.9;
}

/* Contact details list */
.contact-card ul {
  list-style: none;
  padding: 0;
}

.contact-card li {
  display: flex;
  align-items: start;
  margin-bottom: 20px;
}

.contact-card li i {
  font-size: 1.5rem;
  color: #ed5123;
  margin-right: 15px;
  flex-shrink: 0;
}

/* Footer */
footer {
  background: var(--secondary-gradient);
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

/* Sticky WhatsApp */
.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-chat-button {
  background: var(--primary-gradient);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.whatsapp-chat-button:hover {
  transform: scale(1.1);
}

.whatsapp-chat-box {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 300px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  overflow: hidden;
}

.whatsapp-chat-box header {
  background: var(--primary-gradient);
  color: #fff;
  padding: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-chat-box header img {
  width: 35px;
  border-radius: 50%;
}

.whatsapp-chat-box .chat-body {
  padding: 10px;
}

.whatsapp-chat-box .chat-body textarea {
  width: 100%;
  height: 70px;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 5px;
}

.whatsapp-chat-box .chat-body button {
  margin-top: 5px;
  width: 100%;
  background: var(--primary-gradient);
  border: none;
  color: #fff;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.whatsapp-chat-box .chat-body button:hover {
  opacity: 0.9;
}

/* Top button */
#topBtn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999;
  font-size: 18px;
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: 0.3s;
}

#topBtn:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1200px) {
  .carousel-overlay {
    margin-left: 30px;
    max-width: 500px;
  }
}

@media (max-width: 992px) {
  .carousel-item {
    height: 50vh;
  }
  .carousel-overlay {
    margin-left: 20px;
    max-width: 450px;
    padding: 20px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .carousel-item {
    height: 45vh;
  }
  .carousel-overlay {
    margin-left: 15px;
    max-width: 90%;
    padding: 15px;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }

  .contact-card {
    padding: 20px;
  }
  .whatsapp-chat-box {
    width: 260px;
  }
  .whatsapp-chat-box header img {
    width: 30px;
  }
}


/* About Section */
#about {
  background: #f9f9f9;
  overflow: hidden;
}

#about .section-title {
  font-size: 2.5rem;
  background: linear-gradient(45deg,#ed5123,#ff7f50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  text-align: left;
}

#about p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

#about .hero-btn {
  background: linear-gradient(45deg,#ed5123,#ff7f50);
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

#about .hero-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* Animation */
.animate-left, .animate-right {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.animate-left.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-right.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  #about .section-title {
    text-align: center;
  }
  #about p {
    text-align: center;
  }
  #about .hero-btn {
    display: block;
    margin: 20px auto 0 auto;
  }
  #about img {
    margin-bottom: 20px;
  }
}

/* Services Section */
#services {
  background: #f9f9f9;
  padding: 80px 0;
}

#services .section-title {
  font-size: 2.8rem;
  background: linear-gradient(45deg, #ed5123, #ff7f50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 60px;
  font-weight: 700;
}

/* Service Cards */
/* Services Section */
#services {
  background: #f9f9f9;
  padding: 80px 0;
}

#services .section-title {
  font-size: 2.5rem;
  background: linear-gradient(45deg,#ed5123,#ff7f50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 50px;
  text-align: center;
}

/* Service Boxes */
.service-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  background: var(--secondary-gradient);
  color: #fff;
}

.service-box i {
  color: #ed5123;
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-box:hover i {
  transform: scale(1.3);
  color: #fff;
}

.service-box h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.service-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: inherit;
}

/* Scroll Animation */
.animate-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .service-box {
    padding: 25px 15px;
  }
}


.association-section {
  background: linear-gradient(135deg, #fdfdfd 0%, #f9f9f9 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Section Title */
.section-title {
  font-weight: 700;
  font-size: 2.5rem;
}
.section-title span {
  background: linear-gradient(45deg, #ed5123, #ff7f50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Logo Cards */
.logo-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}
.logo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(237,81,35,0.15);
}
.animated-logo {
  max-height: 100px;
  transition: transform 0.6s ease;
}
.logo-card:hover .animated-logo {
  transform: scale(1.12);
}

/* Context Box */
.context-box {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  text-align: center;
}
.context-box .highlight {
  color: #ed5123;
  font-weight: 600;
}

/* Tagline */
.tagline-box h4 {
  font-weight: 700;
  font-size: 1.6rem;
  color: #222;
}
.tagline-box span {
  background: linear-gradient(45deg, #ed5123, #ff7f50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animations */
.fade-in-text, .fade-left, .fade-right, .fade-up {
  opacity: 0;
}
.fade-in-text { animation: fadeUp 1.2s forwards 0.4s; }
.fade-left { transform: translateX(-50px); animation: fadeLeft 1.2s forwards; }
.fade-right { transform: translateX(50px); animation: fadeRight 1.2s forwards; }
.fade-up { transform: translateY(30px); animation: fadeUp 1.2s forwards 0.6s; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { to { opacity: 1; transform: translateX(0); } }
@keyframes fadeRight { to { opacity: 1; transform: translateX(0); } }



/* Inputs */
.custom-input {
  border-radius: 8px;
  padding: 10px 14px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}
.custom-input:focus {
  border-color: #ed5123;
  box-shadow: 0 0 6px rgba(237,81,35,0.25);
}

/* Labels */
.form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* Button */
.custom-btn {
  background: linear-gradient(45deg,#ed5123,#ff7f50);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 1rem;
  border: none;
  transition: all 0.3s ease;
}
.custom-btn:hover {
  background: linear-gradient(45deg,#ff7f50,#ed5123);
  box-shadow: 0 4px 12px rgba(237,81,35,0.2);
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .custom-input {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  .form-label {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }
  textarea.custom-input {
    rows: 3;
  }
  .custom-btn {
    padding: 10px 0;
    font-size: 0.95rem;
  }
}



.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
  }

  .testimonial-slider {
    display: flex;
    transition: transform 0.6s ease-in-out;
  }

  .testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
  }

  .testimonial-card {
    background: var(--white-color);
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  }

  .client-icon svg {
    border-radius: 50%;
    background: var(--white-color);
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    color: #444;
    margin: 20px 0;
    line-height: 1.6;
  }

  .testimonial-name {
    font-weight: bold;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* Arrows */
  .testimonial-prev, .testimonial-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: var(--primary-gradient);
    color: var(--white-color);
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: opacity 0.3s ease;
    z-index: 10;
  }
  .testimonial-prev:hover, .testimonial-next:hover {
    opacity: 0.85;
  }
  .testimonial-prev { left: -55px; }
  .testimonial-next { right: -55px; }

  /* Dots */
  .testimonial-dots {
    text-align: center;
    margin-top: 20px;
  }
  .testimonial-dots button {
    border: none;
    background: #ddd;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: background 0.3s;
  }
  .testimonial-dots button.active {
    background: linear-gradient(45deg, #ed5123, #ff7f50);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .testimonial-prev { left: 10px; }
    .testimonial-next { right: 10px; }
  }
