*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html,body{
  height: 100%;
  width: 100%;
}
.main{
  height: 100%;
  width: 100%;
}
/* part-1 */
.part-1{
  height: auto;
  width: 100%;
}
/* ---------- Part-1 Styles ---------- */
.contact-part1 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #312885;
  color: #ffffff;
  padding: 10px 20px;
  max-height: 11vh;
  min-height: 11vh;
  overflow: hidden;
}

.contact-typewriter {
  display: flex;
  flex-direction: row; /* Desktop view */
  align-items: center;
  justify-content: center;
  gap: 40px;
  overflow: hidden;
}
.contact-item {
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  color: #ffffff;
  background: transparent;
  padding: 6px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  white-space: nowrap;
}

.contact-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

/* Typewriter animation */
@keyframes typingPart1 {
  from { width: 0; opacity: 1; }
  to { width: 100%; opacity: 1; }
}
@keyframes blinkPart1 {
  50% { border-color: transparent; }
}

/* JS triggers this class */
.show-typing .contact-item {
  opacity: 1;
  overflow: hidden;
  border-right: 2px solid #ffffff;
  animation: typingPart1 2.5s steps(25, end) forwards, blinkPart1 0.7s step-end infinite;
}

.show-typing .email {
  animation-delay: 2.7s; /* starts after phone */
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  .contact-typewriter {
    flex-direction: column; /* Mobile view */
    gap: 10px;
  }

  .contact-item {
    font-size: 1rem;
    padding: 4px 12px;
  }
 
}
/* part-2 */
.part-2{
  height: auto;
  width: 100%;
}
/* ---------- Part-2 Styles ---------- */
/* ---------- Part-2 Styles ---------- */
.logo-part2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #312885;
  color: #ffffff;
 height: 23vh;
  padding: 10px 20px;
  overflow: hidden;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  animation: fadeInPart2 1.5s ease forwards, floatPart2 4s ease-in-out infinite;
  opacity: 0;
}

@keyframes fadeInPart2 {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatPart2 {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.logo-image {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0 0 30px rgba(255,255,255,0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.logo-image:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 45px rgba(255,255,255,0.35);
}

/* Text block */
.text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  overflow: hidden;
}

/* Typewriter for Hari Dentals */
.clinic-name {
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  border-right: 2px solid #ffffff;
  overflow: hidden;
  width: 0;
  animation: typingPart2 2.8s steps(20, end) forwards, blinkPart2 0.7s step-end infinite;
}

@keyframes typingPart2 {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes blinkPart2 {
  50% { border-color: transparent; }
}

/* Tagline animation */
.tagline {
  font-size: 1rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInTag 1.5s ease forwards;
  animation-delay: 2.8s;
}

@keyframes fadeInTag {
  to { opacity: 1; transform: translateY(0); }
}

/* Social icons */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 8px;
  opacity: 0;
  animation: showSocial 1.2s ease forwards;
  animation-delay: 3.2s;
}

@keyframes showSocial {
  to { opacity: 1; transform: translateY(0); }
}

.social-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  animation: floatIcons 4s ease-in-out infinite alternate;
}

@keyframes floatIcons {
  0% { transform: translateX(0); }
  50% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

.social-icon:hover {
  background: rgba(255,255,255,0.2);
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
  transform: scale(1.1);
}

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
  .logo-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .text-block {
    align-items: center;
  }

  .clinic-name {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 0.9rem;
    text-align: center;
  }
  .logo-part2{
    height: auto;
    width: 100%;
  }
}
/* part-3 */
.part-3{
  height: auto;
  width: 100%;
}
/* ---------- AZ NAVBAR BEAUTIFY ---------- */
.az-navbar {
  background: rgba(49,40,133,0.85);
  backdrop-filter: blur(15px);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  position: relative;
  z-index: 500;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s ease;
}

.az-navbar.shrink {
  padding: 10px 30px;
  background: rgba(49,40,133,1);
  box-shadow: 0 6px 25px rgba(0,0,0,0.35);
}

.az-nav-logo {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  animation: az-glowLogo 2.5s infinite alternate;
}
.az-nav-logo span { color: #00e5ff; }

@keyframes az-glowLogo {
  from { text-shadow: 0 0 10px #fff; }
  to { text-shadow: 0 0 25px #00e5ff; }
}

/* NAV LINKS */
.az-nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
}

.az-nav-links li { position: relative; }

.az-nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.az-nav-links a:hover {
  background: rgba(255,255,255,0.1);
  color: #00e5ff;
  box-shadow: 0 0 12px rgba(0,229,255,0.5);
}

/* DROPDOWN MENU */
.az-dropdown-menu,
.az-sub-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(49,40,133,0.95);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  min-width: 200px;
  padding: 10px 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  z-index: 100;
  gap: 8px;
  flex-direction: column;
}

.az-dropdown-menu li,
.az-sub-dropdown-menu li {
  margin: 6px 0;
  animation: az-slideFade 0.35s ease forwards;
}

@keyframes az-slideFade {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Sub-dropdown */
.az-sub-dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 6px;
  border-left: 2px solid rgba(255,255,255,0.1);
}

/* Hover show dropdown */
.az-dropdown:hover > .az-dropdown-menu { display: flex; }
.az-sub-dropdown:hover > .az-sub-dropdown-menu { display: flex; }

/* HAMBURGER */
.az-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.az-menu-toggle span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.4s ease;
}
.az-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.az-menu-toggle.active span:nth-child(2) { opacity: 0; }
.az-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .az-menu-toggle { display: flex; }
  .az-nav-links {
    position: relative;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    width: 100%;
    transition: all 0.5s ease;
  }
  .az-nav-links.open { max-height: 550px; padding: 15px 0; }

  .az-dropdown-menu, .az-sub-dropdown-menu {
    position: static;
    box-shadow: none;
    min-width: 100%;
    padding-left: 0;
  }
  .az-dropdown.open > .az-dropdown-menu { display: flex; }
  .az-sub-dropdown.open > .az-sub-dropdown-menu { display: flex; }
}
/* part-4 */
.part-4{
  height: auto;
  width: 100%;
}
/* ---------- INTRO SECTION ---------- */
.az-intro-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #312885;
  color: #ffffff;
  padding: 60px 40px;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.az-intro-left {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.az-welcome-line {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 12px;
  opacity: 0;
  animation: az-fadeIn 1.2s forwards;
}

.az-intro-heading {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  border-right: 2px solid #ffffff;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: az-typewriter 3s steps(30, end) forwards, az-blink 0.7s step-end infinite;
}

.az-intro-content {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0;
  animation: az-fadeIn 1.5s forwards;
  animation-delay: 3.2s;
}

/* TYPEWRITER ANIMATION */
@keyframes az-typewriter {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes az-blink {
  50% { border-color: transparent; }
}
@keyframes az-fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RIGHT SIDE - IMAGE SLIDER */
.az-intro-right {
  flex: 1;
  min-width: 300px;
  max-width: 650px;
}

.az-image-slider {
  display: flex;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,0,0,0.3);
  position: relative;
}

.az-slide {
  min-width: 100%;
  transition: transform 0.8s ease;
}

.az-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  filter: brightness(0.95);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.az-slide img:hover {
  transform: scale(1.05);
  filter: brightness(1);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .az-intro-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }

  .az-intro-left, .az-intro-right {
    max-width: 100%;
  }

  .az-intro-heading {
    font-size: 1.8rem;
  }
}
/* part-5 */
.part-5{
  height: auto;
  width: 100%;
}
.az-counter-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 60px 40px;
  background: #312885;
  color: #ffffff;
}

.az-counter {
  flex: 1 1 150px;
  max-width: 180px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 25px 15px;
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: default;
}

.az-counter:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 30px rgba(0,229,255,0.5);
}

.az-counter-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #00e5ff;
  animation: az-iconFloat 3s ease-in-out infinite alternate;
}

@keyframes az-iconFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px) rotate(3deg); }
  100% { transform: translateY(0); }
}

.az-counter-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.az-counter-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #f0f0f0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .az-counter-section {
    flex-direction: column;
    gap: 25px;
    padding: 40px 20px;
  }
}
/* part-6 */
.part-6{
  height: auto;
  width: 100%;
}
.az-about-dr-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #312885;
  color: #fff;
  padding: 60px 40px;
  gap: 40px;
  flex-wrap: wrap;
}

.az-about-left {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.az-about-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  border-right: 2px solid #ffffff;
  white-space: nowrap;
  overflow: hidden;
}

.az-about-content {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0;
  animation: az-fadeIn 1.2s forwards;
  animation-delay: 0.5s;
}

/* Buttons */
.az-about-buttons a {
  display: inline-block;
  padding: 12px 25px;
  margin-right: 15px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.az-btn-primary {
  background: #00e5ff;
  color: #312885;
}
.az-btn-primary:hover {
  background: #00b0cc;
  transform: scale(1.05);
}

.az-btn-secondary {
  background: transparent;
  border: 2px solid #00e5ff;
  color: #fff;
}
.az-btn-secondary:hover {
  background: #00e5ff;
  color: #312885;
  transform: scale(1.05);
}

/* Right side - image slider */
.az-about-right {
  flex: 1;
  min-width: 300px;
  max-width: 650px;
}

.az-about-slider {
  display: flex;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,0,0,0.35);
  position: relative;
}

.az-about-slide {
  min-width: 100%;
  transition: transform 0.8s ease;
}

.az-about-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  filter: brightness(0.95);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.az-about-slide img:hover {
  transform: scale(1.05);
  filter: brightness(1);
}

/* Fade in animation */
@keyframes az-fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width:900px){
  .az-about-dr-section{
    flex-direction: column;
    padding:40px 20px;
    gap:30px;
  }
  .az-about-left, .az-about-right{ max-width:100%; }
  .az-about-heading{ font-size:1.8rem; }
}
/* part-7 */
.part-7{
  height: auto;
  width: 100%;
}
.az-services-slider-section {
  background: #312885;
  color: #fff;
  padding: 60px 40px;
  overflow: hidden;
}

.az-services-slider-heading {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  animation: az-floating 3s ease-in-out infinite alternate;
}

@keyframes az-floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.az-services-slider-wrapper {
  overflow: hidden;
  position: relative;
}

.az-services-slider-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: az-slideInfinite 30s linear infinite;
}

@keyframes az-slideInfinite {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.az-service-slide {
  min-width: 200px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  text-align: center;
  padding: 20px 10px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.az-service-slide:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 0 25px rgba(0,229,255,0.6);
}

.az-service-slide img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 10px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.az-service-slide img:hover {
  transform: scale(1.05);
  filter: brightness(1);
}

.az-service-slide p {
  font-size: 1rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .az-services-slider-heading { font-size: 1.8rem; }
  .az-services-slider-track { gap: 15px; }
  .az-service-slide { min-width: 150px; padding: 15px 8px; }
  .az-service-slide img { height: 100px; }
}
/* part-8 */
.part-8{
  height: auto;
  width: 100%;
}
.ax-choose-us-section {
  background: #312885;
  color: #fff;
  padding: 60px 40px;
  overflow: hidden;
}

.ax-choose-us-heading {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  border-right: 2px solid #fff;
  white-space: nowrap;
  overflow: hidden;
}

/* Typewriter animation */
@keyframes ax-blink {
  50% { border-color: transparent; }
}

/* Slider wrapper */
.ax-choose-us-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.ax-choose-us-slider-track {
  display: flex;
  gap: 25px;
  width: max-content;
  transition: transform 0.5s ease;
}

.ax-point-card {
  min-width: 180px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  text-align: center;
  padding: 25px 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ax-point-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 25px rgba(0,229,255,0.6);
}

.ax-point-card i {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #00e5ff;
  animation: ax-iconFloat 3s ease-in-out infinite alternate;
}

@keyframes ax-iconFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px) rotate(3deg); }
  100% { transform: translateY(0); }
}

/* Slider buttons */
.ax-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,229,255,0.1);
  color: #00e5ff;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  z-index: 10;
  transition: all 0.3s ease;
}

.ax-slider-btn:hover {
  background: #00e5ff;
  color: #312885;
  transform: scale(1.1);
}

.ax-prev { left: 10px; }
.ax-next { right: 10px; }

/* Responsive */
@media (max-width: 900px){
  .ax-choose-us-slider-track { gap: 15px; }
  .ax-point-card { min-width: 140px; padding: 20px 10px; }
  .ax-choose-us-heading { font-size: 1.8rem; }
}
/* part-9 */
.part-9{
  height: auto;
  width: 100%;
}
.ah-happy-customers-section {
  background: #312885;
  color: #fff;
  padding: 60px 40px;
  overflow: hidden;
}

.ah-happy-heading {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  animation: ah-floating 3s ease-in-out infinite alternate;
}

@keyframes ah-floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.ah-customer-scroller {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ah-customer-row {
  overflow: hidden;
}

.ah-customer-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: ah-scroll-left 30s linear infinite;
}

.ah-customer-row.reverse .ah-customer-track {
  animation: ah-scroll-right 30s linear infinite;
}

.ah-customer-track img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
  border: 3px solid rgba(0,229,255,0.3);
}

.ah-customer-track img:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(0,229,255,0.6);
}

@keyframes ah-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ah-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Responsive */
@media (max-width: 900px){
  .ah-happy-heading { font-size: 1.8rem; }
  .ah-customer-track img { width: 90px; height: 90px; }
}
/* part-10 */
.part-10{
  height: auto;
  width: 100%;
}
.ap-patient-scroller-section {
  background: #312885;
  color: #fff;
  padding: 60px 40px;
  overflow: hidden;
  position: relative;
}

.ap-scroller-heading {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 30px;
  animation: ap-floating 3s ease-in-out infinite alternate;
}

@keyframes ap-floating {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.ap-scroller-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.ap-scroller-track-wrapper {
  overflow: hidden;
  flex: 1;
}

.ap-scroller-track {
  display: flex;
  gap: 25px;
  width: max-content;
  transition: transform 0.5s ease;
}

.ap-scroller-box {
  min-width: 260px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 25px;
  text-align: center;
  padding: 20px 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ap-scroller-box img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 12px;
  transition: transform 0.4s ease;
}

.ap-scroller-box .ap-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 5px 0;
  color: #fff;
}

.ap-scroller-box .ap-review {
  font-size: 0.95rem;
  font-weight: 400;
  color: #e0e0e0;
}

.ap-scroller-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 25px rgba(0,229,255,0.6);
}

.ap-scroller-box:hover img {
  transform: scale(1.05);
}

.ap-scroller-btn {
  background: #00e5ff;
  color: #312885;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 50%;
  margin: 0 10px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.ap-scroller-btn:hover {
  background: #00b0cc;
  transform: scale(1.1);
}

@media (max-width: 900px){
  .ap-scroller-box { min-width: 180px; padding: 15px; }
  .ap-scroller-box img { height: 120px; }
  .ap-scroller-heading { font-size: 1.8rem; }
  .ap-scroller-btn { font-size: 1.5rem; padding: 10px 15px; }
}
/* part-11 */
.part-11{
  height: auto;
  width: 100%;
}
.af-faq-section {
  display: flex;
  gap: 50px;
  padding: 60px 40px;
  background: #312885;
  color: #fff;
  overflow: hidden;
}

.af-left-content {
  flex: 1;
}

.af-left-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.af-left-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.af-left-content .af-images {
  display: flex;
  gap: 15px;
}

.af-left-content .af-images img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.af-left-content .af-images img:hover {
  transform: scale(1.1);
}

.af-right-faq {
  flex: 1;
  position: relative;
}

.af-right-faq h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.af-faq-wrapper {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.af-faq-track {
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: af-scroll-faq 15s linear infinite;
}

.af-faq-wrapper:hover .af-faq-track {
  animation-play-state: paused;
}

.af-faq-item {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 15px 20px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.af-faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 0 20px rgba(0,229,255,0.5);
}

.af-question {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.af-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  margin-top: 8px;
}

.af-question .af-toggle {
  font-weight: 700;
  font-size: 1.2rem;
}

.af-faq-item.active .af-answer {
  max-height: 200px;
}

@keyframes af-scroll-faq {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Responsive */
@media (max-width: 900px){
  .af-faq-section { flex-direction: column; gap: 30px; }
  .af-left-content, .af-right-faq { width: 100%; }
  .af-left-content .af-images img { width: 80px; height: 80px; }
  .af-faq-wrapper { height: 300px; }
}
/* part-12 */
.part-12{
  height: auto;
  width: 100%;
}
.ag-gallery-section {
  background: #312885;
  color: #fff;
  padding: 80px 40px;
  overflow: hidden;
  text-align: center;
}

.ag-gallery-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.ag-slider-wrapper {
  perspective: 1000px;
  overflow: hidden;
}

.ag-slider-track {
  display: flex;
  gap: 40px;
  transition: transform 0.3s ease;
  justify-content: center;
}

.ag-slider-box {
  min-width: 250px;
  height: 250px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease;
  transform-origin: center bottom;
}

.ag-slider-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

/* Responsive */
@media (max-width: 900px){
  .ag-slider-box { min-width: 180px; height: 180px; }
  .ag-gallery-heading { font-size: 2rem; margin-bottom: 30px; }
}
/* part-13 */
.part-13{
  height: auto;
  width: 100%;
}
.aq-query-section {
  display: flex;
  gap: 50px;
  padding: 80px 40px;
  background: #312885;
  color: #fff;
  overflow: hidden;
  align-items: center;
}

.aq-left-form {
  flex: 1;
}

.aq-form-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  animation: aq-floating 3s ease-in-out infinite alternate;
}

.aq-form-subheading {
  font-size: 1rem;
  margin-bottom: 30px;
}

.aq-form input, .aq-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.aq-form textarea { resize: none; height: 120px; }

.aq-form button {
  background: #00e5ff;
  color: #312885;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.3s ease, background 0.3s ease;
}

.aq-form button:hover {
  background: #00b0cc;
  transform: scale(1.05);
}

.aq-right-slider {
  flex: 1;
  perspective: 1000px;
  overflow: hidden;
}

.aq-slider-track {
  display: flex;
  gap: 25px;
  transition: transform 0.3s ease;
}

.aq-slider-box {
  min-width: 220px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.aq-slider-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

/* Floating animation */
@keyframes aq-floating {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@media (max-width:900px){
  .aq-query-section{ flex-direction: column; gap: 30px; }
  .aq-slider-box { min-width: 180px; height: 180px; }
  .aq-form-heading { font-size: 2rem; }
}
/* part-14 */
.part-14{
  height: auto;
  width: 100%;
}
/* Section Styling */
.contact-slider-section {
  background: #312885;
  color: white;
  padding: 60px 20px;
  overflow: hidden;
  font-family: 'Arial', sans-serif;
}

.contact-slider-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

/* Contact Form */
.contact-form {
  flex: 1 1 350px;
  max-width: 500px;
  animation: float 3s ease-in-out infinite;
}

.contact-form h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-form p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
}

.contact-form form textarea {
  resize: none;
  min-height: 120px;
}

.contact-form form button {
  padding: 12px 25px;
  background: white;
  color: #312885;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form form button:hover {
  background: #f0f0f0;
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Image Slider */
.image-slider {
  flex: 1 1 350px;
  max-width: 500px;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  animation: float 4s ease-in-out infinite;
}

.image-slider .slides {
  display: flex;
  width: 300%;
  animation: slide 15s linear infinite;
}

.image-slider .slides img {
  width: 100%;
  object-fit: cover;
}

/* Slide Animation */
@keyframes slide {
  0% { transform: translateX(0); }
  33% { transform: translateX(-33.3333%); }
  66% { transform: translateX(-66.6666%); }
  100% { transform: translateX(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .contact-slider-section .container {
    flex-direction: column;
  }
  .contact-form, .image-slider {
    max-width: 100%;
  }
}
/* Floating Bubbles */
.bubble {
  position: absolute;
  bottom: -100px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: rise 10s infinite ease-in;
}
.bubble:nth-child(1) { width: 40px; height: 40px; left: 20%; animation-delay: 0s; }
.bubble:nth-child(2) { width: 60px; height: 60px; left: 40%; animation-delay: 2s; }
.bubble:nth-child(3) { width: 25px; height: 25px; left: 60%; animation-delay: 4s; }
.bubble:nth-child(4) { width: 80px; height: 80px; left: 70%; animation-delay: 6s; }
.bubble:nth-child(5) { width: 50px; height: 50px; left: 10%; animation-delay: 8s; }
.bubble:nth-child(6) { width: 30px; height: 30px; left: 80%; animation-delay: 3s; }
.bubble:nth-child(7) { width: 70px; height: 70px; left: 50%; animation-delay: 1s; }
.bubble:nth-child(8) { width: 35px; height: 35px; left: 90%; animation-delay: 5s; }

@keyframes rise {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-50vh) scale(1.2); opacity: 0.9; }
  100% { transform: translateY(-100vh) scale(0.8); opacity: 0; }
}

/* Typewriter Effect */
.typewriter {
  overflow: hidden;
  border-right: 3px solid #fff;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 2px;
  animation: typing 5s steps(50, end), blink 0.7s infinite;
}
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}
@keyframes blink {
  50% { border-color: transparent }
}
