/* navbarcss */
/* Navbar Styles - Self-contained with Unique Prefix */
.bgpop{
    background-color: rgba(6, 98, 151, 0.8) !important;
}
/* its for emply tree start */

.college-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px auto;
  width: 100%;
  --line-color: #2563eb;
  font-family: Arial, sans-serif;
}

/* NODE CARD */
.college-node {
  width: 260px;
  border: 3px solid var(--line-color);
  background: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.college-node:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
 background: linear-gradient(135deg, #663399, #a29bfe);
    color: #fff;
  transition: .3s;
  h1, .name, .post, .phone {
    color: #fff;
  }
}
.college-node img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

/* TEXT */
.name {
  margin: 10px 0 2px;
  font-size: 16px;
  font-weight: 700;
}

.post {
  font-size: 14px;
  color: #2563eb;
}

.phone {
  font-size: 13px;
  display: block;
  margin-top: 4px;
}

/* SOCIAL */
.socials {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.socials a {
  width: 30px;
  height: 30px;
  background: var(--line-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.socials a:hover {
  transform: translateY(-3px);
  background: #1e40af;
}

/* LINES */
.college-line-vertical {
  width: 4px;
  height: 40px;
  background: var(--line-color);
}

/* GRID LINE */
.college-line-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 1300px;

}

.college-line-horizontal::before {
  content: "";
  grid-column: 1 / -1;
  height: 4px;
  background: var(--line-color);
}

/* CHILDREN GRID */
.college-children {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 1300px;
  gap: 80px;
}

.college-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.college-child .college-line-vertical {
  height: 25px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .college-children,
  .college-line-horizontal {
    width: 100%;
  }

  .college-children {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* end tree */
/* footer css */
/* =====================
   MODERN FOOTER STYLES
===================== */
.modern-footer {
  background: linear-gradient(135deg, #0b1c2d 0%, #194628 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 20px;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Background Pattern */
.modern-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  z-index: 0;
}

/* Footer Content */
.footer-content {
  position: relative;
  z-index: 1;
}

/* Widget Styling */
.footer-widget {
  margin-bottom: 40px;
  padding: 0 15px;
}

.footer-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  letter-spacing: 0.5px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
}

/* Contact Info */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  color: #3b82f6;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: #3b82f6;
  color: white;
  transform: rotate(5deg);
}

.contact-text {
  flex: 1;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.contact-value {
  display: block;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Recent Blog */
.blog-card {
  display: flex;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.3);
}

.blog-image {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 15px;
  position: relative;
}

.blog-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover .blog-image::after {
  opacity: 1;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  flex: 1;
}

.blog-title {
  margin: 0 0 5px 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.blog-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-title a:hover {
  color: #3b82f6;
}

.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.blog-meta i {
  margin-right: 4px;
  font-size: 0.7rem;
}

/* Quick Links */
.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links li {
  margin-bottom: 12px;
}

.quick-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 5px 0;
  position: relative;
}

.quick-links a::before {
  content: '→';
  color: #3b82f6;
  margin-right: 10px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.quick-links a:hover {
  color: #ffffff;
  transform: translateX(8px);
}

.quick-links a:hover::before {
  transform: translateX(3px);
}

/* Newsletter */
.newsletter-form {
  position: relative;
}

.newsletter-input {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.newsletter-input:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.newsletter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.newsletter-btn:hover::before {
  left: 100%;
}

.newsletter-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
  line-height: 1.5;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  opacity: 0.9;
}

.social-link i {
  position: relative;
  z-index: 1;
}

.social-link.facebook {
  background: linear-gradient(135deg, #1877f2, #0d5cb6);
}

.social-link.twitter {
  background: linear-gradient(135deg, #1da1f2, #0d8ddb);
}

.social-link.instagram {
  background: linear-gradient(135deg, #e4405f, #c13584);
}

.social-link.linkedin {
  background: linear-gradient(135deg, #0077b5, #005582);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer-copyright a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: #8b5cf6;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .modern-footer {
    padding: 60px 0 20px;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .modern-footer {
    padding: 40px 0 20px;
  }
  
  .blog-card {
    flex-direction: column;
    text-align: center;
  }
  
  .blog-image {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
    height: 150px;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* for priceing css */ 
/* Academy Services Section - Fully Scoped CSS */
/* Academy Services Section - Fully Scoped CSS */
/* Academy Services Section - Fully Scoped CSS */
/* Academy Services Section - Fully Scoped CSS */
.academy-services-section {
    --academy-services-primary: #3b82f6;
    --academy-services-secondary: #8b5cf6;
    --academy-services-accent: #06b6d4;
    --academy-services-light: #ffffff;
    --academy-services-dark: #1f2937;
    --academy-services-gray-100: #f8fafc;
    --academy-services-gray-200: #e2e8f0;
    --academy-services-gray-600: #4b5563;
    --academy-services-gray-700: #374151;
    --academy-services-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --academy-services-shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --academy-services-glow: 0 0 40px rgba(59, 130, 246, 0.15);
    --academy-services-radius-lg: 24px;
    --academy-services-radius-md: 16px;
    --academy-services-radius-sm: 8px;
    --academy-services-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #fdf2ff 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.academy-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--academy-services-primary), 
        var(--academy-services-secondary), 
        transparent);
}

/* Remove all horizontal padding and margins */
.academy-services-section .academy-services-container.container.px-0 {
    max-width: 100%;
    padding: 0 !important;
    margin: 0 auto;
    width: 100%;
}

/* Remove grid gutters completely */
.academy-services-grid.row.g-0.mx-0 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 !important;
    width: 100%;
}

/* Grid gap for spacing between cards */
.academy-services-grid {
    gap: 1rem !important;
}

/* Column styling for 4 cards per row */
.academy-services-grid .academy-service-card.col-md-3.px-0 {
    position: relative;
    padding: 0 !important;
    margin: 0;
    perspective: 1000px;
    height: auto;
    flex: 0 0 calc(25% - 0.75rem); /* 4 cards with gap */
    max-width: calc(25% - 0.75rem); /* 4 cards with gap */
}

/* Ensure cards maintain proper height in flex layout */
.d-lg-flex.academy-service-card {
    display: flex;
}

.d-lg-flex.academy-service-card .academy-service-card__wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Card styles with internal spacing only */
.academy-service-card__wrapper {
    background: var(--academy-services-light);
    border-radius: var(--academy-services-radius-lg);
    overflow: hidden;
    box-shadow: var(--academy-services-shadow);
    transition: var(--academy-services-transition);
    position: relative;
    border: 1px solid var(--academy-services-gray-200);
    transform-style: preserve-3d;
    flex: 1;
    margin: 0;
}

/* Card hover effect */
.academy-service-card:hover .academy-service-card__wrapper {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: var(--academy-services-shadow-hover), var(--academy-services-glow);
    border-color: var(--academy-services-primary);
}

/* Card header - adjusted for 4-column layout */
.academy-service-card__header {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--academy-services-gray-200);
    background: linear-gradient(135deg, 
        var(--academy-services-gray-100) 0%,
        var(--academy-services-light) 100%);
}

.academy-service-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--academy-services-dark);
    margin: 0 0 0.75rem;
    line-height: 1.3;
    font-family: 'Inter', system-ui, sans-serif;
}

.academy-service-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.academy-service-card__price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--academy-services-primary);
    background: linear-gradient(135deg, 
        var(--academy-services-primary), 
        var(--academy-services-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    position: relative;
}

.academy-service-card__price-amount::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--academy-services-primary), 
        var(--academy-services-secondary));
    border-radius: 2px;
    opacity: 0.5;
}

/* Card media - adjusted height for 4-column layout */
.academy-service-card__media {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.academy-service-card__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.academy-service-card:hover .academy-service-card__image {
    transform: scale(1.1);
}

.academy-service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: var(--academy-services-transition);
}

.academy-service-card:hover .academy-service-card__overlay {
    opacity: 1;
}

/* Card content - adjusted for 4-column layout */
.academy-service-card__content {
    padding: 1.25rem;
    flex-grow: 1;
}

.academy-service-card__description {
    color: var(--academy-services-gray-700);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card actions - adjusted for 4-column layout */
.academy-service-card__actions {
    padding: 0 1.25rem 1.5rem;
}

.academy-service-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, 
        var(--academy-services-primary), 
        var(--academy-services-secondary));
    color: var(--academy-services-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--academy-services-radius-md);
    transition: var(--academy-services-transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.academy-service-card__button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.academy-service-card__button:hover::before {
    width: 200px;
    height: 200px;
}

.academy-service-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.academy-service-card__button:active {
    transform: translateY(0);
}

.academy-service-card__button-text {
    position: relative;
    z-index: 1;
}

.academy-service-card__button-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

.academy-service-card__button:hover .academy-service-card__button-icon {
    transform: translateX(3px);
}

/* Badge - adjusted for 4-column layout */
.academy-service-card__badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: linear-gradient(135deg, 
        var(--academy-services-accent), 
        #10b981);
    color: var(--academy-services-light);
    padding: 0.4rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

/* Card Hover Effects */
.academy-service-card:nth-child(2n):hover .academy-service-card__wrapper {
    transform: translateY(-8px) rotateX(-5deg);
}

.academy-service-card:nth-child(3n) .academy-service-card__price-amount {
    background: linear-gradient(135deg, 
        var(--academy-services-accent), 
        #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.academy-service-card:nth-child(3n) .academy-service-card__button {
    background: linear-gradient(135deg, 
        var(--academy-services-accent), 
        #10b981);
}

/* Responsive Design for 4-column layout */
@media (min-width: 768px) {
    /* 4 columns on medium screens and up */
    .academy-services-grid .academy-service-card.col-md-3 {
        flex: 0 0 calc(25% - 0.75rem);
        max-width: calc(25% - 0.75rem);
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    /* Adjust for smaller desktop screens */
    .academy-service-card__title {
        font-size: 1.15rem;
    }
    
    .academy-service-card__price-amount {
        font-size: 1.75rem;
    }
    
    .academy-service-card__media {
        height: 160px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    /* 2 columns on tablets */
    .academy-services-grid .academy-service-card.col-md-3 {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }
    
    .academy-service-card__media {
        height: 200px;
    }
    
    .academy-service-card__title {
        font-size: 1.3rem;
    }
    
    .academy-service-card__price-amount {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .academy-services-section {
        padding: 4rem 0;
    }
    
    /* 1 column on mobile */
    .academy-services-grid .academy-service-card.col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* Add vertical spacing between cards on mobile */
    .academy-service-card:not(:last-child) {
        margin-bottom: 1.5rem;
    }
    
    .d-lg-flex.academy-service-card {
        display: block;
    }
    
    .academy-service-card__header {
        padding: 1.5rem;
    }
    
    .academy-service-card__content {
        padding: 1.5rem;
    }
    
    .academy-service-card__actions {
        padding: 0 1.5rem 1.5rem;
    }
    
    .academy-service-card__media {
        height: 220px;
    }
    
    .academy-service-card__title {
        font-size: 1.35rem;
    }
    
    .academy-service-card__price-amount {
        font-size: 2rem;
    }
    
    .academy-service-card__description {
        font-size: 1rem;
        -webkit-line-clamp: 4;
    }
}

@media (max-width: 480px) {
    .academy-services-section {
        padding: 3rem 0;
    }
    
    .academy-service-card__button {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .academy-service-card__button-icon {
        width: 18px;
        height: 18px;
    }
    
    .academy-service-card:not(:last-child) {
        margin-bottom: 1rem;
    }
}

/* Animation on scroll */
@keyframes academy-services-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.academy-service-card {
    animation: academy-services-fade-in 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.academy-service-card:nth-child(1) { animation-delay: 0.1s; }
.academy-service-card:nth-child(2) { animation-delay: 0.15s; }
.academy-service-card:nth-child(3) { animation-delay: 0.2s; }
.academy-service-card:nth-child(4) { animation-delay: 0.25s; }
.academy-service-card:nth-child(5) { animation-delay: 0.3s; }
.academy-service-card:nth-child(6) { animation-delay: 0.35s; }
.academy-service-card:nth-child(7) { animation-delay: 0.4s; }
.academy-service-card:nth-child(8) { animation-delay: 0.45s; }

/* Accessibility */
.academy-service-card__button:focus-visible {
    outline: 3px solid var(--academy-services-primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .academy-services-section {
        background: none !important;
    }
    
    .academy-service-card__wrapper {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    .academy-service-card__button {
        display: none !important;
    }
    
    .academy-service-card__badge {
        display: none !important;
    }
}
/* end Pricing Section - Isolated CSS with Unique Class Names */
/* about css */
 /* Mission Section - Isolated CSS with Unique Class Names */
.about-mission-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-mission-section .about-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.about-mission-section .about-section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.about-mission-section .about-section-title h2 {
    font-size: 2.5rem;
    color: #1a2a6c;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.about-mission-section .about-section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1a2a6c, #2d8cd6);
    border-radius: 2px;
}

.about-mission-section .about-section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.about-mission-section .about-mission-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.about-mission-section .about-mission-text {
    flex: 1;
    padding-right: 20px;
}

.about-mission-section .about-mission-text h3 {
    font-size: 1.8rem;
    color: #1a2a6c;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.3;
}

.about-mission-section .about-mission-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
}

.about-mission-section .about-mission-text p:first-of-type {
    padding-left: 20px;
    border-left: 3px solid #2d8cd6;
}

.about-mission-section .about-mission-image {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.about-mission-section .about-mission-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-mission-section .about-mission-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 42, 108, 0.1), rgba(45, 140, 214, 0.1));
    z-index: 1;
    border-radius: 12px;
}

.about-mission-section .about-mission-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.about-mission-section .about-mission-image:hover img {
    transform: scale(1.05);
}

.about-mission-section .about-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1a2a6c, #2d8cd6);
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(45, 140, 214, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-mission-section .about-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d8cd6, #1a2a6c);
    transition: all 0.4s ease;
    z-index: -1;
}

.about-mission-section .about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(45, 140, 214, 0.4);
}

.about-mission-section .about-btn:hover::before {
    left: 0;
}

/* Decorative elements */
.about-mission-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(45, 140, 214, 0.1) 0%, rgba(45, 140, 214, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.about-mission-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 42, 108, 0.08) 0%, rgba(26, 42, 108, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-mission-section .about-mission-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-mission-section .about-mission-text {
        padding-right: 0;
        text-align: center;
    }
    
    .about-mission-section .about-mission-text p:first-of-type {
        padding-left: 0;
        border-left: none;
        padding-top: 15px;
        border-top: 3px solid #2d8cd6;
    }
    
    .about-mission-section .about-mission-image {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
        transform: perspective(1000px) rotateY(0deg);
    }
}

@media (max-width: 768px) {
    .about-mission-section {
        padding: 70px 0;
    }
    
    .about-mission-section .about-section-title h2 {
        font-size: 2rem;
    }
    
    .about-mission-section .about-mission-text h3 {
        font-size: 1.6rem;
    }
    
    .about-mission-section .about-mission-image img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .about-mission-section {
        padding: 50px 0;
    }
    
    .about-mission-section .about-section-title h2 {
        font-size: 1.8rem;
    }
    
    .about-mission-section .about-mission-text h3 {
        font-size: 1.4rem;
    }
    
    .about-mission-section .about-mission-image img {
        height: 300px;
    }
    
    .about-mission-section .about-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* Print Styles */
@media print {
    .about-mission-section .about-mission-image {
        display: none;
    }
    
    .about-mission-section .about-btn {
        display: none;
    }
}


/* Stats Section coumtercss - Minimal CSS with Unique Classes */

.about-stats-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a2a6c 0%, #2d3b8f 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.about-stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.about-stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.about-stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: #4dabf7;
    text-shadow: 0 2px 10px rgba(77, 171, 247, 0.3);
}

.about-stat-text {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Animation for counters */
@keyframes about-count-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.about-stat-number.about-animated {
    animation: about-count-up 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .about-stats-section {
        padding: 60px 20px;
    }
    
    .about-stats-container {
        gap: 20px;
    }
    
    .about-stat-number {
        font-size: 2.8rem;
    }
    
    .about-stat-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stat-item {
        padding: 25px 15px;
    }
    
    .about-stat-number {
        font-size: 2.2rem;
    }
}