* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #0056d2;
  --secondary-color: #f7b500;
  --background-color: #f5f7fa;
  --text-dark: #1e1e1e;
  --text-light: #6e6e6e;
  --footer-bg: #102c57;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Open Sans", sans-serif;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  background-color: var(--background-color);
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

/* navbar-code-starts-here */
/* Base Navbar */
.navbar {
  background-color: #fff;
  color: #235de6 !important;
  padding: 1rem;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  /* color: #fff; */
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  /* color: #fff; */
  text-decoration: none;
  font-weight: 500;
}

.dropdown:hover > .submenu {
  display: block;
}

.submenu,
.sub-submenu {
  display: none;
  position: absolute;
  background: #fff;
  color: #235de6;
  padding: 0.5rem 0;
  list-style: none;
  border: 1px solid #ddd;
  z-index: 1000;
  min-width: 200px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.dropdown:hover > .submenu,
.dropdown-submenu:hover > .sub-submenu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  position: relative;
}

.submenu li a,
.sub-submenu li a {
  padding: 10px 15px;
  display: block;
  color: var(--text-dark);
}

.submenu li:hover > .sub-submenu {
  display: block;
  left: 100%;
  top: 0;
}
.navbar li a[href*="wa.me"] {
  background-color: #25D366; /* WhatsApp green */
  color: white !important;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.navbar li a[href*="wa.me"]:hover {
  background-color: #1EBE57;
  transform: scale(1.05);
}


/* Mobile Styles */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #235de6;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 1rem;
    z-index: 1000; /* 👈 make it appear on top */
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .submenu,
  .sub-submenu {
    position: static;
    background: #fff;
    border: none;
  }

  .submenu li a,
  .sub-submenu li a {
    color: #fff;
  }

  .dropdown:hover > .submenu,
  .dropdown-submenu:hover > .sub-submenu {
    display: none;
  }

  .dropdown > a::after {
    content: " ▼";
  }

  .submenu-toggle {
    display: block;
    cursor: pointer;
  }
}

.submenu li a,
.sub-submenu li a {
  padding: 10px 15px;
  display: block;
  color: var(--text-dark);
  transition: background-color 0.3s ease;
}

.submenu li a:hover,
.sub-submenu li a:hover {
  background-color: #f0f4ff; /* Light blue highlight */
  color: var(--primary-color);
}

/* navbar-code-ends-here */

/* ========== Hero Section Starts Here ========== */
.hero-section {
  background-color: #1565df;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
}
.hero-text {
  flex: 1 1 500px;
}

.hero-text {
  flex: 1 1 500px;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-text p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #e0e0e0;
  margin-bottom: 2rem;
}

.cta-btn {
  background-color: var(--secondary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background-color: #e69500;
}
.hero-image {
  flex: 1 1 400px;
  text-align: center;
}
.hero-image img {
  max-width: 100%;
  height: auto;
}

/* ========== Responsive ========== */
/* ========= Responsive ========== */
@media (max-width: 1024px) {
  .hero-section {
    min-height: 70vh !important;
    padding: 3rem 1rem;
  }

  .hero-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-image {
    /* ✅ Hide on iPad/tablets */
  }

  .hero-text {
    order: 2;
  }
}

@media (max-width: 600px) {
  .hero-section {
    min-height: 60vh !important; /* ✅ Smaller height for mobile */
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .cta-btn {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
}

/* ========== Hero Section Ends Here ========== */

/* ========== Strength Section Starts Here ========== */
/* ========== Core Strengths Section ========== */

.strengths-section {
  background-color: #fff;
  padding: 4rem 1rem;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

.strengths-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}

.strength-box {
  flex: 1 1 300px;
  padding: 1rem;
}

.strength-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.strength-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--text-dark);
}

.strength-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  font-family: var(--font-body);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .strengths-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem; /* reduce vertical gap */
  }

  .strength-box {
    /* padding: 0.5rem 0; */
    margin-bottom: -120px;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .strength-number {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
  }

  .strength-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .strength-desc {
    font-size: 0.9rem;
    max-width: 90%;
    margin: 0 auto;
  }

  .strengths-section {
    padding: 2rem 1rem; /* reduce section padding */
  }
}

/* ========== Strength Section Ends Here ========== */

/* abroad services section css starts here */
.abroad-services-section {
  background-color: #fff4ec;
  padding: 4rem 1rem;
  font-family: var(--font-body);
}

.abroad-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.abroad-text {
  flex: 1 1 500px;
}

.abroad-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.abroad-subtext {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.abroad-text h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.abroad-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.abroad-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
}

.abroad-list .icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  color: #f7b500;
  font-size: 1rem;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-right: 0.8rem;
}

.see-more {
  display: inline-block;
  color: #f25c54;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.see-more:hover {
  text-decoration: underline;
}

.abroad-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.abroad-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .abroad-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .abroad-text h2 {
    font-size: 1.6rem;
  }

  .abroad-subtext {
    font-size: 0.95rem;
  }

  .abroad-list li {
    justify-content: center;
  }

  .abroad-image {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .abroad-services-section {
    padding: 2.5rem 1rem;
  }

  .abroad-text h2 {
    font-size: 1.5rem;
  }

  .abroad-image {
    /* Hide image on mobile */
    max-width: 300px;
  }
}

/* abroad services section css ends here */

/* domestic education section starts here  */
.domestic-section {
  background-color: #fff7e6;
  padding: 4rem 1rem;
  font-family: var(--font-body);
}

.domestic-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap-reverse;
}

.domestic-text {
  flex: 1 1 500px;
}

.domestic-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.domestic-subtext {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.domestic-text h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.domestic-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.domestic-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
}

.domestic-list .icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  color: #f7b500;
  font-size: 1rem;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-right: 0.8rem;
}

.see-more {
  display: inline-block;
  color: #f25c54;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.see-more:hover {
  text-decoration: underline;
}

.domestic-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.domestic-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .domestic-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .domestic-text h2 {
    font-size: 1.6rem;
  }

  .domestic-subtext {
    font-size: 0.95rem;
  }

  .domestic-list li {
    justify-content: center;
  }

  .domestic-image {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .domestic-section {
    padding: 2.5rem 1rem;
  }

  .domestic-text h2 {
    font-size: 1.5rem;
  }
  .domestic-image img {
    /* Hide image on mobile */
    max-width: 300px;
  }
}

/* domestic education section ends here  */

/* internship section starts here */
.internship-section {
  background-color: #f0f9ff;
  padding: 4rem 1rem;
  font-family: var(--font-body);
}

.internship-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.internship-text {
  flex: 1 1 500px;
}

.internship-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.internship-subtext {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.internship-text h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.internship-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.internship-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
}

.internship-list .icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  color: #0056d2;
  font-size: 1rem;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-right: 0.8rem;
}

.see-more {
  display: inline-block;
  color: #f25c54;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.see-more:hover {
  text-decoration: underline;
}

.internship-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.internship-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .internship-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .internship-text h2 {
    font-size: 1.6rem;
  }

  .internship-subtext {
    font-size: 0.95rem;
  }

  .internship-list li {
    justify-content: center;
  }

  .internship-image {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .internship-section {
    padding: 2.5rem 1rem;
  }

  .internship-text h2 {
    font-size: 1.5rem;
  }
  .internship-image img {
    /* Hide image on mobile */
    max-width: 300px;
  }
}

/* internship section ends here */

/* job section starts here */
.job-section {
  background-color: #fff8e7;
  padding: 4rem 1rem;
  font-family: var(--font-body);
}

.job-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.job-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.job-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.job-text {
  flex: 1 1 500px;
}

.job-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.job-subtext {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.job-text h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.job-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.job-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
}

.job-list .icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  color: #ff9900;
  font-size: 1rem;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-right: 0.8rem;
}

.see-more {
  display: inline-block;
  color: #f25c54;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.see-more:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .job-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .job-text h2 {
    font-size: 1.6rem;
  }

  .job-subtext {
    font-size: 0.95rem;
  }

  .job-list li {
    justify-content: center;
  }

  .job-image {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .job-section {
    padding: 2.5rem 1rem;
  }

  .job-text h2 {
    font-size: 1.5rem;
  }
  .job-image img {
    /* Hide image on mobile */
    max-width: 300px;
  }
}

/* job section ends here */

/* testimonials section starts here */
/* ====== Testimonial Section ====== */
.testimonial-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f7f9fc;
  position: relative;
  overflow: hidden;
}

.testimonial-section h3 {
  color: #555;
  font-size: 1rem;
  margin-bottom: 10px;
}

.testimonial-section h2 {
  font-size: 2rem;
  color: #001c54;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.4;
}

.testimonial-section .highlight {
  color: #ff7a00;
  font-weight: bold;
}

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.testimonial-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.testimonial-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.testimonial-card {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  min-width: 300px;
  max-width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.stars {
  color: #f9b52c;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 15px;
  text-align: left;
}

.testimonial-card h4 {
  margin: 0;
  font-weight: bold;
  font-size: 1rem;
  color: #001c54;
  text-align: left;
}

.testimonial-card small {
  color: #888;
  font-size: 0.85rem;
  text-align: left;
  display: block;
}

/* ====== Arrow Buttons ====== */
.arrow {
  background: white;
  border: 1px solid #ddd;
  font-size: 1.8rem;
  color: #001c54;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.arrow:hover {
  background-color: #ff7a00;
  color: white;
}

.arrow.left {
  left: -60px;
}

.arrow.right {
  right: -60px;
}

/* ====== Responsive Styles ====== */
@media (max-width: 1024px) {
  .arrow.left {
    left: -30px;
  }

  .arrow.right {
    right: -30px;
  }

  .testimonial-section h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .testimonial-carousel {
    gap: 16px;
  }

  .testimonial-card {
    min-width: 260px;
    max-width: 260px;
  }

  .arrow {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .arrow.left {
    left: -20px;
  }

  .arrow.right {
    right: -20px;
  }

  .testimonial-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    min-width: 90%;
  }

  .arrow {
    display: none; /* Optional: Hide arrows on mobile if space is tight */
  }

  .testimonial-section h2 {
    font-size: 1.3rem;
    padding: 0 10px;
  }
}

/* testimonials section ends here  */

/* footer-section-starts-here */
.site-footer {
  background-color: var(--footer-bg);
  color: #ffffff;
  padding: 3rem 1.5rem 1rem;
  font-family: var(--font-body);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 250px;
}

.company-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.company-info p {
  font-size: 0.95rem;
  color: #cccccc;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: #dddddd;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--secondary-color);
}

/* Sub-menus */
.footer-col .sub-menu {
  margin-top: 0.4rem;
  margin-left: 1rem;
  padding-left: 0.5rem;
  border-left: 2px solid var(--secondary-color);
}

.footer-col .sub-menu li {
  margin-bottom: 0.4rem;
}

/* Bottom Footer */
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-col {
    text-align: left;
    flex: 1 1 0px;
  }

  .footer-col ul li {
    margin-bottom: 0.5rem;
  }

  .footer-bottom {
    padding-top: 1rem;
  }
}

/* footer-section-ends-here */


/* new-services-section-starts-here */
/* Services Section */
 .zzz-container-478 {
        padding: 2rem 1rem;
        max-width: 1200px;
        margin: auto;
      }

      .zzz-section-header-478 {
        text-align: center;
        margin-bottom: 3rem;
      }

      .zzz-title-478 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
      }

      .zzz-subtitle-478 {
        color: #666;
      }

      .zzz-grid-478 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
      }

      @media (min-width: 1024px) {
        .zzz-grid-478 {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      .zzz-card-478 {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        padding: 1.5rem;
        transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
        animation: zzzFadeUp-478 1s ease forwards;
        opacity: 0;
        transform-origin: center;
      }

      .zzz-card-478:hover {
        transform: scale(1.03) rotateZ(-1deg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      }

      .zzz-icon-478 {
        font-size: 2rem;
        color: white;
        padding: 1rem;
        border-radius: 50%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        width: 60px;
        height: 60px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      }

      .zzz-card-478:hover .zzz-icon-478 {
        transform: rotate(20deg) scale(1.1);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
      }

      .zzz-icon-blue-478 {
        background-color: #007bff;
      }

      .zzz-icon-teal-478 {
        background-color: #17a2b8;
      }

      .zzz-icon-orange-478 {
        background-color: #fd7e14;
      }

      .zzz-icon-purple-478 {
        background-color: #6f42c1;
      }

      .zzz-card-title-478 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
      }

      .zzz-desc-478 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        color: #444;
      }

      .zzz-feature-list-478 {
        margin-bottom: 1rem;
      }

      .zzz-feature-item-478 {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        margin: 0.25rem 0;
      }

      .zzz-dot-478 {
        width: 8px;
        height: 8px;
        background-color: #555;
        border-radius: 50%;
      }

      .zzz-link-478 {
        color: #007bff;
        text-decoration: none;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        font-size: 0.9rem;
      }

      .zzz-link-478:hover {
        text-decoration: underline;
      }

      .zzz-cta-box-478 {
        background: linear-gradient(to right, #007bff, #00c9a7);
        color: #fff;
        padding: 2rem;
        text-align: center;
        border-radius: 12px;
        margin-top: 3rem;
        animation: zzzPulse-478 4s infinite ease-in-out;
      }

      .zzz-cta-title-478 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
      }

      .zzz-cta-sub-478 {
        font-size: 1rem;
        margin-bottom: 1rem;
      }

      .zzz-btn-478 {
        background-color: #ff9900;
        color: white;
        padding: 0.75rem 1.5rem;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
      }

      .zzz-btn-478:hover {
        background-color: #e88b00;
        transform: scale(1.05);
      }
      .zzz-card-478 {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.zzz-card-478:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

 


      @keyframes zzzFadeUp-478 {
        0% {
          opacity: 0;
          transform: translateY(40px);
        }
        100% {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes zzzPulse-478 {
        0%, 100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.02);
        }
      }


/* new-services-section-ends-here *