/* Advanced Preloader with Logo Animation */
.advanced-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  overflow: hidden;
}

.advanced-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.preloader-gradient {
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  animation: gradientRotate 8s linear infinite;
  top: -50%;
  left: -50%;
}

@keyframes gradientRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.preloader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 500px;
  padding: 20px;
}

.preloader-logo-wrapper {
  margin-bottom: 40px;
  animation: fadeInUp 1s ease;
}

.logo-container {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.preloader-logo {
  width: 180px;
  height: auto;
  border-radius: 15px;
  animation: logoPulse 2.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.3));
  transition: all 0.3s ease;
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.3));
  }
  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 15px 40px rgba(255, 107, 53, 0.5));
  }
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes glowPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.9;
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
}

.text-line {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  animation: textFadeIn 1.2s ease forwards;
  opacity: 0;
}

.text-future {
  color: #FF6B35;
  animation-delay: 0.5s;
}

.text-peak {
  color: #20B2AA;
  animation-delay: 0.8s;
}

.text-youth {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation-delay: 1.1s;
  margin-top: 5px;
}

@keyframes textFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preloader-progress {
  margin-top: 40px;
  animation: fadeInUp 1.2s ease 1.3s both;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #FF6B35 0%, #FF8C42 50%, #20B2AA 100%);
  border-radius: 10px;
  width: 0%;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.loading-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
}

.loading-dots {
  display: inline-block;
}

.loading-dots span {
  display: inline-block;
  animation: letterBounce 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.1s; }
.loading-dots span:nth-child(3) { animation-delay: 0.2s; }
.loading-dots span:nth-child(4) { animation-delay: 0.3s; }
.loading-dots span:nth-child(5) { animation-delay: 0.4s; }
.loading-dots span:nth-child(6) { animation-delay: 0.5s; }
.loading-dots span:nth-child(7) { animation-delay: 0.6s; }

.dot-animation {
  animation: dotBounce 1.4s ease-in-out infinite !important;
}

.loading-dots .dot-animation:nth-child(8) { animation-delay: 0.7s; }
.loading-dots .dot-animation:nth-child(9) { animation-delay: 0.8s; }
.loading-dots .dot-animation:nth-child(10) { animation-delay: 0.9s; }

@keyframes letterBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px);
    opacity: 0.7;
  }
}

@keyframes dotBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-8px);
    opacity: 0.5;
  }
}

.preloader-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #FF6B35;
  border-radius: 50%;
  opacity: 0.6;
  animation: particleFloat 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  background: #FF6B35;
}

.particle:nth-child(2) {
  top: 60%;
  left: 20%;
  animation-delay: 1s;
  background: #20B2AA;
}

.particle:nth-child(3) {
  top: 30%;
  right: 15%;
  animation-delay: 2s;
  background: #FF8C42;
}

.particle:nth-child(4) {
  bottom: 20%;
  left: 30%;
  animation-delay: 1.5s;
  background: #FF6B35;
}

.particle:nth-child(5) {
  top: 80%;
  right: 25%;
  animation-delay: 0.5s;
  background: #20B2AA;
}

.particle:nth-child(6) {
  bottom: 40%;
  right: 10%;
  animation-delay: 2.5s;
  background: #FF8C42;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-30px) translateX(20px) scale(1.2);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-60px) translateX(-10px) scale(0.8);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-30px) translateX(-20px) scale(1.1);
    opacity: 0.7;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Preloader should not block scrolling - allow scroll immediately */
body.preloader-active {
  /* Don't block scrolling - just let preloader overlay */
  overflow-x: hidden !important;
  overflow-y: auto !important;
  height: auto !important;
  position: relative !important;
  width: 100% !important;
}

/* Enable smooth scrolling */
body:not(.preloader-active) {
  overflow-x: hidden;
  overflow-y: auto;
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Ensure page is scrollable immediately when preloader is removed */
body.preloader-active * {
  pointer-events: none;
}

body:not(.preloader-active) * {
  pointer-events: auto;
}

/* Responsive Preloader */
@media (max-width: 768px) {
  .preloader-logo {
    width: 140px;
  }
  
  .logo-glow {
    width: 160px;
    height: 160px;
  }
  
  .text-line {
    font-size: 20px;
  }
  
  .text-youth {
    font-size: 12px;
  }
  
  .preloader-content {
    max-width: 90%;
  }
  
  .preloader-progress {
    margin-top: 30px;
  }
  
  .preloader-logo-wrapper {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .preloader-logo {
    width: 120px;
  }
  
  .logo-glow {
    width: 140px;
    height: 140px;
  }
  
  .text-line {
    font-size: 18px;
    letter-spacing: 1px;
  }
  
  .text-youth {
    font-size: 11px;
    letter-spacing: 2px;
  }
}

.navbar-brand img{
    width: 200px;
    border-radius: 10px;
}
.navbar-brand{
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.nav-link{
  color: white !important;
  font-size: 14px;
  padding: 5px 12px !important;
}
.header-area .main-nav{
    align-items: center;
}

.main-banner{
    position: relative;
}
.main-banner .hero-img{
    position: absolute;
    bottom: 15%;
    right: 0;
    width: 200px;

}
.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    transition: 0.3s;
    color: #fff;
    margin-right: 10px;
}

.btn-download i {
    font-size: 20px;
    margin-right: 8px;
}

.btn-branch {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #fff !important;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-branch i {
    font-size: 18px;
    margin-right: 8px;
}

.btn-branch:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

@media (max-width: 768px) {
    .btn-branch {
        font-size: 12px;
        padding: 8px 16px;
    }

    .btn-branch i {
        font-size: 16px;
        margin-right: 6px;
    }
}

.android {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.ios {
    background: linear-gradient(135deg, #20B2AA 0%, #00CED1 100%);
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
}

.android:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.ios:hover {
    background: linear-gradient(135deg, #00CED1 0%, #20B2AA 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(32, 178, 170, 0.4);
}
.color-p{
  color: #FF6B35;
}
/*
# Hero Section
--------------------------------------------------------------*/
.hero.min-height{
  min-height: 400px;
}
.hero {
  width: 100%;
  min-height: 80vh;
  padding-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, #0c2826, transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.hero p {
  color: color-mix(in srgb, #eee, transparent 20%);
  margin: 10px 0 25px 0;
  font-size: 24px;
  max-width: 650px;
  text-align: center;
}

.hero .btn-get-started {
  background: #fff;
  color: #000;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
}
.dropdown-item{
  line-height: 35px !important; 
  color: white;
}
.dropdown-item:focus, .dropdown-item:hover{
  background-color: white;
  color: black !important;
}
.dropdown-item:active{
  background-color: white;
  color: black !important;
}

.dropdown-menu {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  opacity: 0;
  transition: .4s;
  transform: scaleY(0);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.dropdown-menu.show {
  transform: scaleY(1);
  opacity: 1;
}

#certificate-verification {
    padding: 60px 0;
    background-color: #ecf0f1;
}

#certificate-verification .container {
    max-width: 800px;
    margin: 0 auto;
}

#certificate-verification h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

#certificate-verification form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#certificate-verification .form-group {
    margin-bottom: 20px;
}

#certificate-verification label {
    font-weight: 600;
    color: #2c3e50;
}

#certificate-verification input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
}

#certificate-verification input:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

#certificate-verification button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

#certificate-verification button:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

#result-check {
    padding: 60px 0;
    background-color: #ecf0f1;
}

#result-check .container {
    max-width: 800px;
    margin: 0 auto;
}

#result-check form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#result-check .form-group {
    margin-bottom: 20px;
}

#result-check label {
    font-weight: 600;
    color: #2c3e50;
}

#result-check input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#result-check input:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

#result-check button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

#result-check button:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

/* Student Details Card */
#result-check .card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#result-check .card img {
    border: 3px solid #3498db;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

#result-check .card p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

#result-check .card p strong {
    color: #2c3e50;
}

#result-check .badge {
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 5px;
}

#result-check .badge-success {
    background-color: #28a745;
}

#result-check .badge-danger {
    background-color: #dc3545;
}
/* Custom Styles for Offline Courses Page */
#offline-courses {
  background-color: #f8f9fa;
}

.course-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.course-card .card-img-top {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 200px;
  object-fit: cover;
}

.course-card .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
}

.course-card .card-text {
  font-size: 1rem;
  color: #555;
}

.course-card .list-group-item {
  border: none;
  padding: 4px 0;
  font-size: 0.95rem;
  color: #555;
}

.course-card .list-group-item strong {
  color: #2c3e50;
}

.course-card .btn-primary {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.course-card .btn-primary:hover {
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

/* Affiliations Section Styling */
#affiliations {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.affiliations-slider {
  margin: 0 auto;
  max-width: 1200px;
}

.affiliations-slider .slide {
  text-align: center;
  padding: 12px;
  aspect-ratio: 16/10;
  background: #eee;
  border-radius: 12px;
}

.affiliations-slider .slide img {
  height: 100% !important;
  width: auto !important;
  object-fit: contain;
  height: auto;
  margin: 0 auto;
  transition: filter 0.3s ease;
}
/* Slick Slider Dots Styling */
.slick-dots {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots li button {
  font-size: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slick-dots li.slick-active button {
  background-color: #FF6B35;
}
/* Add margin to slides for consistent gaps */
.affiliations-slider .slick-slide {
  margin: 0 10px; /* Adjust the gap size as needed */
}

/* Remove extra padding from the slider container */
.affiliations-slider {
  padding: 0 20px; /* Adjust based on your design */
}


  .section-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .section-divider {
    height: 4px;
    width: 70px;
    background: linear-gradient(to right, #007bff, #00c3ff);
    border-radius: 2px;
  }
  
  .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  }
  
  .hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
  }
  
  
  #academic_rules .tagline {
      font-style: italic;
      font-weight: 300;
    }
    
    #academic_rules .rule-card {
      border: none;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      height: 100%;
    }
    
    #academic_rules .rule-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    }
    
    #academic_rules .card-header h3{
        color:white;
    }
    #academic_rules .card-header {
      background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
      color: white;
      border: none;
      padding: 1.25rem;
      display: flex;
      align-items: center;
      box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    }
    
    #academic_rules .card-header i {
      font-size: 1.75rem;
      margin-right: 1rem;
    }
    
    #academic_rules .card-body {
      padding: 1.5rem;
    }
    
    #academic_rules .rule-list {
      padding-left: 1rem;
    }
    
    #academic_rules .rule-list li {
      margin-bottom: 0.75rem;
      position: relative;
      padding-left: 1.5rem;
    }
    
    #academic_rules .rule-list li::before {
      content: "•";
      color: #FF6B35;
      font-weight: bold;
      position: absolute;
      left: 0;
      top: 0;
      font-size: 1.2em;
    }
    
    #academic_rules strong {
      color: #FF6B35;
    }
    @media (max-width: 768px) {
      #academic_rules .rule-card {
        margin-bottom: 1.5rem;
      }
    }
    
    
    .faq-section {
    background-color: #f8f9fa;
  }
  
  .section-title {
    color: #333;
    position: relative;
  }
  
  .section-divider {
    height: 4px;
    width: 70px;
    background: linear-gradient(to right, #0d6efd, #0dcaf0);
    border-radius: 2px;
  }
  
  .accordion-button {
    background-color: white;
    box-shadow: none;
    padding: 1.25rem;
  }
  
  .accordion-button:not(.collapsed) {
    background-color: white;
    color: #FF6B35;
    box-shadow: none;
  }
  
  .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(13, 110, 253, 0.25);
  }
  
  /*.accordion-button:not(.collapsed)::after {*/
  /*  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");*/
  /*}*/
  
  .accordion-body {
    padding: 1.25rem;
    background-color: #f8f9fa;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }
  
  .accordion-item {
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
  }
  #franchiseFAQ .text-primary{
      color: #FF6B35 !important;
  }
  
  @media (max-width: 768px) {
    .accordion-button {
      padding: 1rem;
    }
    
    .accordion-body {
      padding: 1rem;
    }
  }

/* Responsive Adjustments */
@media (max-width: 768px) {
  .course-card {
    margin-bottom: 20px;
  }

  .course-card .card-img-top {
    height: 150px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    #result-check form {
        padding: 20px;
    }

    #result-check .card {
        text-align: center;
    }

    #result-check .card img {
        margin-bottom: 20px;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    #certificate-verification h2 {
        font-size: 1.5rem;
    }

    #certificate-verification form {
        padding: 20px;
    }
}

@media (max-width: 995px) {
  .navbar-collapse{
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  }
}
/* Enhanced About Section Styles */
.about-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-accordion-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.enhanced-accordion .accordion-item {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.enhanced-accordion .accordion-item:hover {
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
  transform: translateY(-2px);
}

.enhanced-accordion .accordion-button {
  background: #fff;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 16px;
  padding: 20px 25px;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

.enhanced-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(32, 178, 170, 0.1) 100%);
  color: #FF6B35;
  box-shadow: none;
}

.enhanced-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.enhanced-accordion .accordion-body {
  padding: 20px 25px;
  background: #fff;
  color: #4a4a4a;
  line-height: 1.8;
  font-size: 15px;
}

.about-content-wrapper {
  padding: 20px 0;
}

.about-text-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-item {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.feature-item:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(32, 178, 170, 0.05) 100%);
  border-left-color: #FF6B35;
  transform: translateX(5px);
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.about-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4) !important;
}

.about-cta .btn-outline-primary:hover {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  color: #fff;
  border-color: #FF6B35;
}

@media (max-width: 991px) {
  .about-us {
    padding: 60px 0;
  }
  
  .about-accordion-wrapper,
  .about-text-content {
    padding: 30px 20px;
  }
  
  .about-content-wrapper .section-heading h2 {
    font-size: 32px;
  }
}

/* Advanced Hero Section Styles */
.advanced-hero {
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(255, 107, 53, 0.3) 100%);
  z-index: 2;
}

.hero-content {
  z-index: 3;
  padding: 100px 20px;
}

.hero-badge {
  animation: fadeInDown 1s ease;
}

.badge-text {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.title-line-1, .title-line-2 {
  display: block;
}

.highlight-text {
  color: #FF6B35;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.hero-stats {
  margin: 30px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #FF6B35;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 5px;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
  height: 50px;
  align-self: center;
}

.hero-actions {
  margin-top: 40px;
}

.scroll-indicator {
  margin-top: 50px;
  animation: bounce 2s infinite;
}

.scroll-down {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.scroll-down:hover {
  color: #FF6B35;
  transform: translateY(5px);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Enhanced Services Section */
.enhanced-services {
  position: relative;
  overflow: hidden;
}

/* Override section padding for enhanced services */
.enhanced-services.section {
  padding: 100px 0 !important;
  margin-top: 0 !important;
}

.enhanced-services::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.enhanced-services .container {
  position: relative;
  z-index: 1;
}

.enhanced-services .section-heading {
  margin-bottom: 40px !important;
}

.enhanced-services .section-heading h6 {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 20px;
  margin-bottom: 15px !important;
}

.enhanced-services .section-heading h2 {
  margin-bottom: 15px !important;
}

.enhanced-services .section-heading p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.enhanced-services .row {
  margin-top: 30px !important;
}

/* Remove extra spacing in services section */
.enhanced-services .section-heading.mb-5 {
  margin-bottom: 2rem !important;
}

.enhanced-services .row.mt-4 {
  margin-top: 1.5rem !important;
}

.enhanced-services .row.mt-3 {
  margin-top: 1rem !important;
}

/* Enhanced Service Cards */
.enhanced-service-card {
  position: relative;
  background: #fff;
  border-radius: 25px;
  padding: 45px 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  height: 100%;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  margin-top: 0 !important;
}

/* Reset old service styles for enhanced cards */
.services .service-item.enhanced-service-card .icon {
  position: static !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  line-height: normal !important;
  margin: 0 !important;
}

.services .service-item.enhanced-service-card .main-content {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.enhanced-service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.25);
  border-color: rgba(255, 107, 53, 0.3);
}

.service-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 72px;
  font-weight: 900;
  color: rgba(255, 107, 53, 0.08);
  line-height: 1;
  z-index: 1;
  transition: all 0.3s ease;
}

.enhanced-service-card:hover .service-number {
  color: rgba(255, 107, 53, 0.15);
  transform: scale(1.1);
}

.service-icon-wrapper {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  width: 100%;
}

.service-icon-circle {
  position: relative;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: #fff;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.enhanced-service-card:hover .service-icon-circle {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
}

.service-icon-wrapper .icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(32, 178, 170, 0.15) 100%);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.5s ease;
  pointer-events: none;
}

.enhanced-service-card:hover .service-icon-wrapper .icon-bg {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.25) 0%, rgba(32, 178, 170, 0.25) 100%);
  transform: translate(-50%, -50%) rotate(180deg);
}

.service-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.08), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.enhanced-service-card:hover .service-hover-effect {
  left: 100%;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(32, 178, 170, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.enhanced-service-card:hover .service-overlay {
  opacity: 1;
}

.enhanced-service-card .main-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.enhanced-service-card .main-content h4 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.enhanced-service-card:hover .main-content h4 {
  color: #FF6B35;
}

.enhanced-service-card .main-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  flex: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.service-features li {
  display: flex;
  align-items: center;
  color: #555;
  font-size: 14px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  line-height: 1.6;
}

.service-features li:last-child {
  margin-bottom: 0;
}

.service-features li i {
  color: #FF6B35;
  margin-right: 10px;
  font-size: 12px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.enhanced-service-card:hover .service-features li i {
  background: rgba(255, 107, 53, 0.2);
  transform: scale(1.1);
}


.enhanced-service-card .main-button {
  margin-top: auto;
  padding-top: 10px;
}

.enhanced-service-card .main-button a {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.enhanced-service-card .main-button a:hover {
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #fff;
}

.enhanced-service-card .main-button a i {
  transition: transform 0.3s ease;
}

.enhanced-service-card .main-button a:hover i {
  transform: translateX(5px);
}

.services-cta {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(32, 178, 170, 0.05) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid rgba(255, 107, 53, 0.1);
  margin-top: 2rem !important;
}

.services-cta.mt-5 {
  margin-top: 2rem !important;
}

.services-cta.mt-4 {
  margin-top: 1.5rem !important;
}

.services-cta .btn,
.services-cta .btn-primary {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%) !important;
  border: none !important;
  color: #fff !important;
  transition: all 0.3s ease;
}

.services-cta .btn:hover,
.services-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4) !important;
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%) !important;
  color: #fff !important;
}

/* Service cards should be visible by default */
.enhanced-service-card {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
  display: flex !important;
}

/* Override AOS default hidden state - show cards immediately */
.enhanced-service-card[data-aos] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* AOS will animate them when they come into view */
.enhanced-service-card[data-aos].aos-animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

.enhanced-service-card.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

/* Responsive Services Section */
@media (max-width: 991px) {
  .enhanced-services {
    padding: 80px 0 !important;
  }
  
  .enhanced-services .section-heading h2 {
    font-size: 38px;
  }
  
  .enhanced-service-card {
    padding: 35px 25px;
    margin-bottom: 30px;
  }
  
  .service-icon-wrapper {
    height: 100px;
    margin-bottom: 25px;
  }
  
  .service-icon-circle {
    width: 90px;
    height: 90px;
    font-size: 38px;
  }
  
  .service-icon-wrapper .icon-bg {
    width: 120px;
    height: 120px;
  }
  
  .enhanced-service-card:hover .service-icon-wrapper .icon-bg {
    width: 140px;
    height: 140px;
  }
  
  .service-number {
    font-size: 60px;
    top: 15px;
    right: 20px;
  }
  
  .enhanced-service-card .main-content h4 {
    font-size: 22px;
  }
  
  .services-cta {
    padding: 30px 25px;
    text-align: center;
  }
  
  .services-cta .btn {
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .enhanced-services {
    padding: 60px 0 !important;
  }
  
  .enhanced-services .section-heading {
    margin-bottom: 40px;
  }
  
  .enhanced-services .section-heading h6 {
    font-size: 12px;
    padding: 6px 15px;
  }
  
  .enhanced-services .section-heading h2 {
    font-size: 32px;
    line-height: 1.3;
  }
  
  .enhanced-services .section-heading p {
    font-size: 14px;
  }
  
  .enhanced-service-card {
    padding: 30px 20px;
    margin-bottom: 25px;
  }
  
  .service-icon-wrapper {
    height: 90px;
    margin-bottom: 20px;
  }
  
  .service-icon-circle {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
  
  .service-icon-wrapper .icon-bg {
    width: 110px;
    height: 110px;
  }
  
  .enhanced-service-card:hover .service-icon-wrapper .icon-bg {
    width: 120px;
    height: 120px;
  }
  
  .service-number {
    font-size: 50px;
    top: 10px;
    right: 15px;
  }
  
  .enhanced-service-card .main-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .enhanced-service-card .main-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .service-features {
    margin-bottom: 20px;
  }
  
  .service-features li {
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .enhanced-service-card .main-button a {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .services-cta {
    padding: 25px 20px;
  }
  
  .services-cta h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .services-cta p {
    font-size: 14px;
  }
  
  .services-cta .btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* Quick Links Section */
.quick-links-section {
  padding: 80px 0;
}

.quick-link-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.quick-link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}

.quick-link-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  transition: all 0.3s ease;
}

.quick-link-card:hover .quick-link-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.quick-link-card h5 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.quick-link-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.quick-link-btn {
  display: inline-flex;
  align-items: center;
  color: #FF6B35;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.quick-link-btn:hover {
  color: #FF8C42;
  transform: translateX(5px);
}

/* Newsletter Section */
.newsletter-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.newsletter-input {
  height: 50px;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 0 20px;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.newsletter-btn {
  height: 50px;
  padding: 0 30px;
  background: #fff;
  color: #FF6B35;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Enhanced Advanced Footer Styles */
.advanced-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
  color: #fff;
  margin-top: 100px;
  width: 100%;
  clear: both;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.enhanced-footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #2c2c2c 100%);
  position: relative;
}

.enhanced-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), transparent);
}

/* Newsletter Section */
.footer-newsletter {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(32, 178, 170, 0.1) 100%);
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.footer-newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.newsletter-content h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.newsletter-content h4 i {
  color: #FF6B35;
  margin-right: 10px;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin: 0;
}

.newsletter-form .input-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form .form-control {
  flex: 1;
  min-width: 250px;
  padding: 15px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
  outline: none;
  border-color: #FF6B35;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.btn-newsletter {
  padding: 15px 30px;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  border: none;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.btn-newsletter:hover {
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.newsletter-message {
  font-size: 14px;
  min-height: 20px;
}

.newsletter-message.success {
  color: #20B2AA;
}

.newsletter-message.error {
  color: #ff4444;
}

.advanced-footer * {
  box-sizing: border-box;
}

.footer-main {
  padding: 80px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.footer-main .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-main .row {
  margin: 0;
}

.footer-main .row > [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

.footer-widget {
  margin-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Footer Brand Section */
.footer-brand-section {
  position: relative;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
}

.footer-logo {
  position: relative;
  display: inline-block;
}

.footer-logo-img {
  max-width: 80px;
  height: auto;
  border-radius: 10px;
  filter: brightness(1.1);
  transition: all 0.3s ease;
}

.footer-brand-text {
  flex: 1;
}

.footer-brand-name {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.footer-brand-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ISO Badge */
.iso-badge {
  margin-top: 15px;
  display: inline-block;
}

.badge-text {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(32, 178, 170, 0.2) 100%);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 20px;
  color: #FF6B35;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-text i {
  color: #FF6B35;
  font-size: 10px;
}

/* Footer Stats */
.footer-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-stats .stat-item {
  flex: 1;
  min-width: 80px;
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer-stats .stat-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-3px);
}

.footer-stats .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #FF6B35;
  line-height: 1;
  margin-bottom: 5px;
}

.footer-stats .stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 14px;
  text-align: left;
  flex: 1;
}

.footer-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #FF6B35 0%, #20B2AA 100%);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.footer-links li {
  margin-bottom: 12px;
  line-height: 1.8;
  display: flex;
  align-items: center;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  padding: 5px 0;
  position: relative;
}

.footer-links a span {
  position: relative;
  z-index: 1;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 5px;
  transition: width 0.3s ease;
  z-index: 0;
}

.footer-links a:hover {
  color: #FF6B35;
  transform: translateX(8px);
}

.footer-links a:hover::before {
  width: calc(100% + 20px);
}

.footer-links a i {
  font-size: 14px;
  color: #FF6B35;
  transition: all 0.3s ease;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.footer-links a:hover i {
  transform: translateX(3px);
  color: #FF8C42;
}

.social-icons {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.social-icons .social-icon {
  margin-right: 0;
}

.social-links h6 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.social-icon::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.3s ease, height 0.3s ease;
}

.social-icon:hover::before {
  width: 100%;
  height: 100%;
}

.social-icon i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.social-icon:hover i {
  transform: scale(1.2) rotate(5deg);
}

.social-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #1a1a1a;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-bottom: 8px;
  pointer-events: none;
  z-index: 10;
}

.social-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1a1a1a;
}

.social-icon:hover .social-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.social-icon.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-icon.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
}

.social-icon.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
}

.social-icon.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.social-icon.playstore:hover {
  background: #00d4aa;
  border-color: #00d4aa;
}

/* Footer Contact Cards */
.footer-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateX(5px);
}

.contact-card-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(32, 178, 170, 0.2) 100%);
  border-radius: 10px;
  color: #FF6B35;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  background: linear-gradient(135deg, #FF6B35 0%, #20B2AA 100%);
  color: #fff;
  transform: scale(1.1);
}

.contact-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-card-content strong {
  display: block;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  font-weight: 600;
  opacity: 0.9;
}

.contact-card-content a,
.contact-card-content span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  line-height: 1.5;
  word-wrap: break-word;
}

.contact-card-content a:hover {
  color: #FF6B35;
}

/* Footer Copyright Bottom Section - Separate from footer */
.footer-copyright-bottom {
  padding: 22px 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 26, 26, 0.8) 100%);
  width: 100%;
  border-top: 2px solid rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 1;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.footer-copyright-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), transparent);
}

.footer-copyright-bottom .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-copyright-bottom .row {
  margin: 0;
  align-items: center;
}

.footer-copyright-bottom .row > [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.7;
  text-align: left;
  display: block;
}

.footer-copyright i {
  color: #FF6B35;
  font-size: 14px;
  margin-right: 6px;
  vertical-align: baseline;
}

.copyright-company {
  color: #FF6B35;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
}

.copyright-company:hover {
  color: #FF8C42;
  text-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
}

.footer-designed {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.7;
  text-align: right;
  display: block;
}

.footer-designed i {
  color: #FF6B35;
  font-size: 14px;
  margin-right: 6px;
  vertical-align: baseline;
}

.designed-by-link {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: inline-block;
}

.designed-by-name {
  color: #FF6B35;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
}

.designed-by-link:hover .designed-by-name,
.designed-by-link:hover {
  color: #FF8C42;
  text-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
  transform: translateY(-1px);
}

.footer-bottom .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.footer-bottom p strong {
  color: #fff;
  font-weight: 600;
}

.footer-bottom-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  padding: 5px 0;
}

.footer-bottom-links a i {
  margin-right: 5px;
  font-size: 12px;
}

.footer-bottom-links a:hover {
  color: #FF6B35;
  transform: translateY(-2px);
}

.footer-bottom-links a:hover i {
  transform: scale(1.2);
}

.footer-bottom-links .separator {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 8px;
  font-size: 14px;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.scroll-to-top.show {
  display: flex;
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fab-button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.fab-button.phone {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.fab-button.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.fab-button.email {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
}

.fab-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.fab-tooltip {
  position: absolute;
  right: 70px;
  background: #1a1a1a;
  color: #fff;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.fab-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1a1a1a;
}

.fab-button:hover .fab-tooltip {
  opacity: 1;
  right: 75px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-title {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .stat-divider {
    display: none;
  }
  
  .floating-actions {
    bottom: 90px;
    right: 20px;
  }
  
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 25px;
  }

  .hero p {
    font-size: 16px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-stats {
    gap: 15px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-label {
    font-size: 12px;
  }
  
  .btn-download{
    font-size: 12px;
    padding: 10px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-btn {
    width: 100%;
  }
  
  .footer-main {
    padding: 60px 0 30px;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
  
  .footer-logo-img {
    max-width: 70px;
  }
  
  .footer-brand-name {
    font-size: 24px;
  }
  
  .footer-brand-subtitle {
    font-size: 11px;
  }
  
  .iso-badge {
    margin-top: 12px;
  }
  
  .badge-text {
    padding: 6px 12px;
    font-size: 11px;
  }
  
  .contact-card {
    padding: 12px;
  }
  
  .contact-card-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-right: 12px;
  }
  
  .contact-card-content strong {
    font-size: 11px;
  }
  
  .contact-card-content a,
  .contact-card-content span {
    font-size: 13px;
  }
  
  .footer-stats {
    gap: 10px;
  }
  
  .footer-stats .stat-item {
    min-width: 70px;
    padding: 12px;
  }
  
  .footer-stats .stat-number {
    font-size: 20px;
  }
  
  .footer-stats .stat-label {
    font-size: 10px;
  }
  
  .footer-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .contact-icon-wrapper {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-right: 12px;
  }
  
  .footer-contact li {
    margin-bottom: 15px;
  }
  
  .footer-contact li strong {
    font-size: 11px;
  }
  
  .footer-contact li a,
  .footer-contact li span {
    font-size: 13px;
  }
  
  .footer-copyright-bottom {
    padding: 18px 0;
  }
  
  .footer-copyright-bottom .row {
    text-align: center;
  }
  
  .footer-copyright {
    font-size: 13px;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.5;
  }
  
  .footer-designed {
    font-size: 13px;
    text-align: center;
    line-height: 1.5;
  }
  
  .footer-copyright i,
  .footer-designed i {
    font-size: 13px;
    margin-right: 5px;
  }
  
  .copyright-company,
  .designed-by-name {
    font-size: 13px;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-links {
    text-align: left;
  }
  
  .footer-wave {
    height: 40px;
  }
  
  .contact-icon-wrapper {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-right: 12px;
  }
  
  .footer-contact li {
    margin-bottom: 15px;
  }
  
  .footer-title {
    font-size: 18px;
  }
  
  .footer-description {
    font-size: 13px;
  }
  
  .footer-links a,
  .footer-contact li span,
  .footer-contact li a {
    font-size: 13px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .about-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .about-cta .btn {
    width: 100%;
    margin: 0 !important;
  }
  
  .floating-actions {
    bottom: 80px;
    right: 15px;
  }
  
  .fab-button {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}