/* Global Styles */
:root {
  --primary-color: #4e6bff;
  --secondary-color: #6c757d;
  --dark-color: #212529;
  --light-color: #f8f9fa;
  --transition: all 0.3s ease;

  /* New Color Variables */
  --light-blue: #f0f5ff;
  --light-purple: #f6f3ff;
  --light-pink: #fff0f3;
  --light-green: #f0fff4;
  --light-yellow: #fffbeb;
  --gradient-primary: linear-gradient(135deg, #4e6bff 0%, #7c8fff 100%);
  --gradient-secondary: linear-gradient(135deg, #ff6b6b 0%, #ffa07a 100%);
}

body {
  padding-top: 45px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}
p {
  font-family: "Roboto";
  color: rgb(133, 127, 127);
  font-size: 16px;
  text-align: justify;
}
section {
  position: relative;
  overflow: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  font-family: "none";
}
.fw-bold{
  font-size: 40px;
}

.display-1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  letter-spacing: -0.02em;
}

/* Navbar Styles */
.navbar {
  backdrop-filter: blur(10px);
  background-color: rgba(33, 37, 41, 0.95) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.6rem;
  background: linear-gradient(45deg, var(--primary-color), #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  min-height: calc(100vh - 76px);
  position: relative;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 1rem;
  letter-spacing: 3px;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  margin-top: 10px;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(45deg, #4e6bff, #7c8fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
}

.hero-buttons .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-buttons .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%) rotate(45deg);
  transition: all 0.3s ease;
}

.hero-buttons .btn:hover::before {
  transform: translateX(100%) rotate(45deg);
}

.hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.stat-item {
  position: relative;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #4e6bff, #7c8fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  background: linear-gradient(
    45deg,
    rgba(78, 107, 255, 0.3),
    rgba(124, 143, 255, 0.3)
  );
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(
    45deg,
    rgba(255, 107, 107, 0.3),
    rgba(255, 160, 122, 0.3)
  );
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    45deg,
    rgba(78, 107, 255, 0.3),
    rgba(124, 143, 255, 0.3)
  );
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-shape-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.hero-shape-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

/* Hero Section Responsive */
@media (max-width: 991px) {
  .hero-section {
    text-align: center;
  }

  .hero-description {
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-item {
    flex: 0 0 auto;
    width: auto;
    margin: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-item {
    margin: 0;
  }
}

/* Services Preview Section */
.services-preview {
  background-color: var(--light-blue);
  position: relative;
}

.services-preview .card {
  border: none;
  border-radius: 10px;
  background: white;
  box-shadow: 0 10px 30px rgba(78, 107, 255, 0.08);
  transition: var(--transition);
  overflow: hidden;
}

.services-preview .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.services-preview .card:hover::before {
  transform: scaleX(1);
}

.services-preview .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(78, 107, 255, 0.12);
}
/* learning path css */
.learning-paths-section .card {
    border-radius: 15px;
  }

.learning-paths-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(78, 107, 255, 0.12);
  }
  .learning-paths-section .card {
    transition: transform 0.3s ease;
  }
  
.services-preview .fas {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3rem;
}

/* About Section */
.about-section {
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0.95)
    ),
    url("../images/pattern-bg.svg");
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.about-highlight {
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid var(--primary-color);
}

.about-highlight h3 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-highlight p {
  color: var(--text-color);
  line-height: 1.8;
}

.about-features {
  background: rgba(var(--primary-rgb), 0.03);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-item {
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-item h4 {
  color: var(--primary-color);
  font-weight: 600;
}

.feature-item p {
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 0;
}

.about-section img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.about-section img:hover {
  transform: scale(1.02);
}

.about-section .fas {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(
    45deg,
    rgba(78, 107, 255, 0.1),
    rgba(124, 143, 255, 0.1)
  );
  color: var(--primary-color);
  transition: var(--transition);
}

.about-section .d-flex:hover .fas {
  transform: scale(1.1) rotate(5deg);
}

/* Pricing Section */
.pricing-section {
  background: linear-gradient(
    135deg,
    var(--light-blue) 0%,
    var(--light-purple) 100%
  );
}

.pricing-section .card {
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  background: white;
}

.pricing-section .card.border-primary {
  border-width: 2px !important;
  transform: translateY(-10px);
}

.pricing-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(78, 107, 255, 0.12);
}

.price-tag {
  position: relative;
  padding: 10px;
}

.price-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* our achievements section*/
.stat-card i {
  font-size: 50px;
}
/* testimonials */
/* Customer Reviews Section */
.testimonial-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.subtitle {
  color: #ff9800;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  /* margin-bottom: 50px; */
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin: 20px 40px;
  position: relative;
  transition: transform 0.3s ease;
}

.quote-icon {
  position: absolute;
  top: -20px;
  left: 40px;
  width: 40px;
  height: 40px;
  background: blue;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-icon i {
  color: white;
  font-size: 1.5rem;
}

.testimonial-text {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid blue;
}

.client-name {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

.client-profession {
  margin: 0;
  color: #ff9800;
  font-size: 0.9rem;
}

.carousel-indicators button.active {
  opacity: 1;
}

/* Animation */
.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.carousel-item.active .testimonial-card {
  animation: slideIn 0.6s ease forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    margin: 20px 10px;
    padding: 30px;
  }

  .title {
    font-size: 2.3rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }
  .subtitle {
    font-size: 1.1rem;
  }
}

/* Blog Section */
.blog-section .card {
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  background: white;
  box-shadow: 0 10px 30px rgba(78, 107, 255, 0.08);
}

.blog-section .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.blog-section .card:hover .card-img-top {
  transform: scale(1.05);
}

.blog-section .btn-link {
  position: relative;
  padding-bottom: 2px;
}

.blog-section .btn-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.blog-section .btn-link:hover::after {
  width: 100%;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(
    135deg,
    var(--light-purple) 0%,
    var(--light-blue) 100%
  );
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(78, 107, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}

.contact-form .form-floating {
  margin-bottom: 1rem;
}

.contact-form .form-control {
  border: 2px solid rgba(78, 107, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  height: auto;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(78, 107, 255, 0.1);
  background: white;
}

.contact-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(78, 107, 255, 0.2);
}

.contact-info-wrapper {
  height: 100%;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(78, 107, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(78, 107, 255, 0.1);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
  transform: scale(1.1) rotate(10deg);
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-details h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.contact-details p {
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-social {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(78, 107, 255, 0.1);
}

.contact-social h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(78, 107, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(78, 107, 255, 0.2);
}

@media (max-width: 991px) {
  .contact-form-wrapper,
  .contact-info-card {
    margin-bottom: 2rem;
  }

  .contact-info-item {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-form-wrapper,
  .contact-info-card {
    padding: 1.5rem;
  }

  .contact-info-item {
    gap: 1rem;
  }
}

/* Footer */
footer {
  background: var(--dark-color);
  margin-top: auto;
}

footer a {
  transition: var(--transition);
  position: relative;
}

footer a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: var(--transition);
}

footer a:hover::after {
  width: 100%;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease forwards;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar-nav {
    padding: 1rem 0;
  }

  .navbar-nav .btn {
    margin: 0.5rem 0;
    width: 100%;
  }

  .hero-section {
    text-align: center;
  }

  .hero-section .btn {
    width: 100%;
    margin: 0.5rem 0;
  }

  .about-section img {
    margin-bottom: 2rem;
  }

  .pricing-section .card.border-primary {
    transform: none;
  }

  .contact-info {
    margin-top: 2rem;
  }

  .team-card .card-img-top {
    height: 250px;
  }

  .services-full .card-img-top,
  .blog-section .card-img-top {
    height: 180px;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #3d5aff 0%, #6b7fff 100%);
}

/* Image Styles */
.img-hover-zoom {
  overflow: hidden;
}

.img-hover-zoom img {
  transition: var(--transition);
}

.img-hover-zoom:hover img {
  transform: scale(1.1);
}

/* Services Section */
.services-full .card-img-top {
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.services-full .card:hover .card-img-top {
  transform: scale(1.05);
}

/* Team Section */
.team-section {
  background: linear-gradient(
    135deg,
    var(--light-green) 0%,
    var(--light-blue) 100%
  );
}

.team-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  background: white;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(78, 107, 255, 0.12);
}

.team-card .card-img-top {
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .card-img-top {
  transform: scale(1.05);
}

.team-card .card-body {
  position: relative;
  padding: 2rem;
}

.team-card .card-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.team-card .social-icons a {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(78, 107, 255, 0.1),
    rgba(124, 143, 255, 0.1)
  );
  color: var(--primary-color);
  transition: var(--transition);
}

.team-card .social-icons a:hover {
  transform: translateY(-3px);
  background: var(--gradient-primary);
  color: white;
}

/* Blog Section Enhancement */
.blog-section {
  background: linear-gradient(
    135deg,
    var(--light-blue) 0%,
    var(--light-green) 100%
  );
}

.blog-icon-box {
  height: 200px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.blog-icon-box::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.2)
  );
  transform: translateX(-100%) rotate(45deg);
  transition: all 0.6s ease;
}

.blog-icon-box:hover::before {
  transform: translateX(100%) rotate(45deg);
}

.blog-icon-box i {
  font-size: 4rem;
  color: white;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.blog-section .card:hover .blog-icon-box i {
  transform: scale(1.1) rotate(10deg);
}

.blog-meta {
  font-size: 0.9rem;
}

.blog-meta i {
  opacity: 0.8;
}

/* Team Section Enhancement */
.team-section {
  background: linear-gradient(
    135deg,
    var(--light-green) 0%,
    var(--light-blue) 100%
  );
  position: relative;
  overflow: hidden;
}

.team-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-icon-wrapper {
  background: var(--gradient-primary);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.team-icon-box {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.team-icon-box i {
  font-size: 3rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(78, 107, 255, 0.15);
}

.team-card:hover .team-icon-box {
  transform: scale(1.1);
}

.team-card:hover .team-icon-box i {
  transform: rotate(10deg);
}

.social-icons a {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(78, 107, 255, 0.1);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-3px);
}

/* Partners Section Enhancement */
.partners-section {
  background: white;
  position: relative;
  overflow: hidden;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.partner-icon-box {
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(78, 107, 255, 0.1);
  gap: 1rem;
}

.partner-icon-box i {
  font-size: 3rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.partner-name {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.partner-icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(78, 107, 255, 0.1);
  border-color: var(--primary-color);
}

.partner-icon-box:hover i {
  transform: scale(1.1);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .partner-icon-box {
    width: 140px;
    height: 140px;
  }

  .partner-icon-box i {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .story-card,
  .team-card,
  .blog-section .card {
    margin-bottom: 1.5rem;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .partner-icon-box {
    width: 120px;
    height: 120px;
  }

  .partner-icon-box i {
    font-size: 2rem;
  }

  .blog-icon-box {
    height: 160px;
  }

  .blog-icon-box i {
    font-size: 3rem;
  }
}

/* Hero Icons Grid */
.hero-icons-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.icon-box {
  width: 100px;
  height: 100px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(78, 107, 255, 0.15),
    rgba(124, 143, 255, 0.15)
  );
  opacity: 0;
  transition: all 0.3s ease;
}

.icon-box:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.icon-box:hover::before {
  opacity: 1;
}

.icon-box i {
  font-size: 2.5rem;
  color: white;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.icon-box:hover i {
  transform: scale(1.1);
  background: linear-gradient(45deg, #4e6bff, #7c8fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1200px) {
  .hero-icons-grid {
    gap: 1.5rem;
  }

  .icon-box {
    width: 80px;
    height: 80px;
  }

  .icon-box i {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  .hero-icons-wrapper {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-highlight {
    padding-left: 0.75rem;
  }

  .about-features {
    padding: 1.5rem;
  }

  .feature-item {
    padding: 1rem;
  }
}

/* Comprehensive Services Section */
.services-full {
  background: linear-gradient(
    135deg,
    var(--light-blue) 0%,
    var(--light-purple) 100%
  );
  position: relative;
  overflow: hidden;
}

.services-full::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: var(--light-color);
}

.services-full .container {
  position: relative;
  z-index: 1;
}

.services-full .card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.services-full .card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(78, 107, 255, 0.15);
}

.services-full .service-icon-box {
  height: 180px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.services-full .service-icon-box::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.2)
  );
  transform: translateX(-100%) rotate(45deg);
  transition: all 0.6s ease;
}

.services-full .card:hover .service-icon-box::before {
  transform: translateX(100%) rotate(45deg);
}

.services-full .service-icon-box i {
  font-size: 4rem;
  color: white;
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.services-full .card:hover .service-icon-box i {
  transform: scale(1.1) rotate(10deg);
}

.services-full .card-body {
  padding: 2rem;
  position: relative;
}

.services-full .card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 1rem;
}

.services-full .card-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.services-full .card:hover .card-title::after {
  width: 100px;
}

.services-full .card-text {
  font-family: "Roboto";
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.services-full .list-unstyled {
  margin-bottom: 0;
}

.services-full .list-unstyled li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  color: var(--dark-color);
  transition: all 0.3s ease;
}

.services-full .list-unstyled li i {
  margin-right: 1rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.services-full .card:hover .list-unstyled li {
  transform: translateX(5px);
}

.services-full .card:hover .list-unstyled li i {
  transform: scale(1.2);
  background: #28a745;
  color: white;
}

@media (max-width: 991px) {
  .services-full .card {
    margin-bottom: 2rem;
  }

  .services-full .service-icon-box {
    height: 150px;
  }

  .services-full .service-icon-box i {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .services-full .card-body {
    padding: 1.5rem;
  }

  .services-full .card-title {
    font-size: 1.2rem;
  }
}
