/* Prevent horizontal scrolling */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

/* Mobile touch and interaction improvements */
@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .nav-link:hover,
  .dropdown-item:hover {
    transform: none;
  }
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
  .btn,
  .nav-link,
  .dropdown-item,
  .service-btn,
  .register-btn {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Better spacing for touch */
  .navbar-nav .nav-item {
    margin-bottom: 5px;
  }
  
  .dropdown-menu {
    margin-top: 8px;
  }
  
  /* Improve text readability on mobile */
  body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  
  /* Better form controls */
  .form-control,
  .form-select {
    min-height: 44px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  /* Smooth scrolling for mobile */
  html {
    scroll-behavior: smooth;
  }
  
  /* Better image loading */
  img {
    height: auto;
    max-width: 100%;
  }
}

/* Header container */
.navbar {
  padding: 15px 0;
  background: #f5f5f5 !important;
  backdrop-filter: blur(10px);
  /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); */
  position: relative;
  z-index: 1050;
}

.container-fluid {
  padding: 0 30px;
  max-width: 1400px;
}

/* Logo styling */
.navbar-brand {
  margin-right: 20px;
  padding: 0;
  color: #333 !important;
}

.navbar-brand img {
  height: 45px;
  width: auto;
}

/* Menu buttons */
.navbar-nav {
  margin-left: 0 !important;
  gap: 10px;
}

.navbar-nav .nav-link {
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #333 !important;
  margin: 0 5px;
}

.navbar-nav .nav-link:hover {
  background-color: #fff;
  color: #20c997 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Hover dropdown */
.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  animation: fadeInUp 0.3s ease;
}

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

.dropdown-menu {
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  margin-top: 5px;
  z-index: 1060;
  position: absolute;  
}

.dropdown-item {
  padding: 12px 20px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background-color: #e8f5e8;
  color: #20c997;
  border-left-color: #20c997;
  transform: translateX(5px);
}

/* Mobile responsive */
@media (max-width: 991.98px) {
  .navbar-nav {
    margin-top: 20px;
    gap: 5px;
    width: 100%;
  }

  .navbar-nav .nav-link {
    margin: 5px 0;
    text-align: center;
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
  }

  .container-fluid {
    padding: 0 20px;
  }
  
  /* Mobile dropdown improvements */
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none;
    border: none;
    background: #f8f9fa;
    margin-top: 5px;
    border-radius: 8px;
  }
  
  .dropdown-item {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .navbar-brand img {
    height: 40px;
    margin-left: 0 !important;
  }
  
  .navbar-toggler {
    border: none;
    padding: 8px 12px;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
}

@media (max-width: 576px) {
  .container-fluid {
    padding: 0 15px;
  }
  
  .navbar-brand img {
    height: 35px;
  }
  
  .navbar-nav .nav-link {
    padding: 12px 15px;
    font-size: 15px;
  }
  
  .dropdown-item {
    padding: 10px 15px;
    font-size: 13px;
  }
}
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="20" height="20" fill="rgba(255,255,255,0.05)"/><rect x="60" y="40" width="20" height="20" fill="rgba(255,255,255,0.05)"/><rect x="40" y="60" width="20" height="20" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
  background-size: 100px 100px;
  opacity: 0.3;
}



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

/* Left Column - Program Details */
.hero-program-details {
  padding-right: 40px;
}



.program-header .main-heading {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  color: white;
  animation: fadeInUp 1s ease-out;
}

.ai-badge {
  background: #ff6b35;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sub-heading {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 25px;
  opacity: 0.9;
  color: white;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.program-description {
  margin-bottom: 40px;
}

.program-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: white;
  margin: 0;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.program-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 1.2rem;
  color: white;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.hero .stat-number {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
  color: white !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
}

.hero .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1;
  color: white !important;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-buttons .btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.cta-buttons .btn-primary {
  background: #20c997;
  border: none;
  color: white;
}

.cta-buttons .btn-primary:hover {
  background: #1ba085;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(32, 201, 151, 0.3);
  color: white;
}

.cta-buttons .btn-outline-primary {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.cta-buttons .btn-outline-primary:hover {
  background: white;
  color: #1e3c72;
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-3px);
}

/* Right Column - Hero Image */
.hero-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
}

.hero-image {
  max-width: 120%;
  height: auto;
  border-radius: 20px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
  /* animation: fadeInUp 1s ease-out 0.5s both; */
  /* transition: transform 0.3s ease; */
}

.hero-image:hover {
  transform: translateY(-10px) scale(1.02);
}

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

.hero-graphics img {
  position: absolute;
  opacity: 0.6;
  animation: twinkle 3s ease-in-out infinite;
}

.star-1 { 
  top: 15%; 
  left: 85%; 
  width: 60px;
  height: 60px;
  animation-delay: 0s;
}
.star-2 { 
  top: 25%; 
  left: 75%; 
  width: 40px;
  height: 40px;
  animation-delay: 1.5s;
}
.arrow-1 { 
  bottom: 20%; 
  right: 65%; 
  width: 80px;
  height: 80px;
  animation-delay: 0.5s;
}
.arrow-2 { 
  bottom: 15%; 
  right: 55%; 
  width: 60px;
  height: 60px;
  animation-delay: 2s;
}

/* Keyframe Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Mobile responsive */
@media (max-width: 1200px) {
  .hero {
    padding: 60px 4rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    padding: 60px 3rem;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-image {
    order: -1;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
    min-height: auto;
  }
  
  .hero-program-details {
    padding-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .program-header .main-heading {
    font-size: 2rem;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }
  
  .ai-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .sub-heading {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .program-description {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .program-description p {
    font-size: 0.95rem;
  }
  
  .program-stats {
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .stat-item {
    flex: 0 0 calc(50% - 10px);
    min-width: 120px;
    text-align: center;
  }
  
  .hero .stat-number {
    font-size: 16px;
  }
  
  .hero .stat-label {
    font-size: 0.8rem;
  }
  
  .cta-buttons {
    gap: 10px;
    justify-content: center;
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
  }
  
  .hero-image-container {
    padding: 20px;
    order: -1;
  }
  
  .hero-image {
    max-width: 100%;
    border-radius: 15px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 30px 0;
  }
  
  .program-header .main-heading {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .sub-heading {
    font-size: 1rem;
  }
  
  .program-description p {
    font-size: 0.9rem;
  }
  
  .program-stats {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
  }
  
  .stat-item {
    flex: none;
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero .stat-number {
    font-size: 14px;
  }
  
  .hero .stat-label {
    font-size: 0.75rem;
  }
  
  .cta-buttons .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

/* Enhanced Mobile Responsive Styles for Hero Section */
@media (max-width: 480px) {
  .hero {
    padding: 25px 0;
    min-height: 60vh;
  }
  
  .hero-program-details {
    padding: 0 15px;
    margin-bottom: 25px;
  }
  
  .program-header .main-heading {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }
  
  .ai-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    margin-top: 0.5rem;
    display: inline-block;
  }
  
  .sub-heading {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .program-description {
    margin-bottom: 1.5rem;
  }
  
  .program-description p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .program-stats {
    gap: 12px;
    margin-bottom: 1.5rem;
    align-items: center;
    justify-content: center;
  }
  
  .stat-item {
    max-width: 280px;
    padding: 12px 16px;
    gap: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .stat-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .hero .stat-number {
    font-size: 13px;
  }
  
  .hero .stat-label {
    font-size: 0.7rem;
  }
  
  .cta-buttons {
    gap: 8px;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 220px;
    padding: 8px 16px;
    font-size: 0.8rem;
    justify-content: center;
  }
  
  .hero-image-container {
    padding: 15px;
    order: -1;
  }
  
  .hero-image {
    max-width: 95%;
    border-radius: 12px;
  }
}

@media (max-width: 400px) {
  .hero {
    padding: 20px 0;
    min-height: 55vh;
  }
  
  .hero-program-details {
    padding: 0 10px;
  }
  
  .program-header .main-heading {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  
  .ai-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
  }
  
  .sub-heading {
    font-size: 0.85rem;
  }
  
  .program-description p {
    font-size: 0.8rem;
  }
  
  .stat-item {
    max-width: 250px;
    padding: 10px 14px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .stat-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  
  .hero .stat-number {
    font-size: 12px;
  }
  
  .hero .stat-label {
    font-size: 0.65rem;
  }
  
  .cta-buttons .btn {
    max-width: 200px;
    padding: 7px 14px;
    font-size: 0.75rem;
  }
  
  .hero-image {
    max-width: 100%;
    border-radius: 10px;
  }
}

@media (max-width: 360px) {
  .hero {
    padding: 15px 0;
    min-height: 50vh;
  }
  
  .program-header .main-heading {
    font-size: 1.3rem;
  }
  
  .ai-badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
  }
  
  .sub-heading {
    font-size: 0.8rem;
  }
  
  .program-description p {
    font-size: 0.75rem;
  }
  
  .stat-item {
    max-width: 220px;
    padding: 8px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .stat-icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  
  .hero .stat-number {
    font-size: 11px;
  }
  
  .hero .stat-label {
    font-size: 0.6rem;
  }
  
  .cta-buttons .btn {
    max-width: 180px;
    padding: 6px 12px;
    font-size: 0.7rem;
  }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 30px 0;
  }
  
  .hero-program-details {
    margin-bottom: 20px;
  }
  
  .program-header .main-heading {
    font-size: 2.2rem;
  }
  
  .program-stats {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
  
  .stat-item {
    max-width: 200px;
    padding: 10px 15px;
  }
  
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .cta-buttons .btn {
    max-width: 180px;
  }
}

/* Mentorship Programs Section */
.mentorship-programs {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.mentorship-programs .container {
  max-width: 1000px;
}

.mentorship-programs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

/* Mentorship Programs Horizontal Tabs */
.mentorship-programs .course-tabs-horizontal {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.mentorship-programs .course-tabs-horizontal .tab-item {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 130px;
}

.mentorship-programs .course-tabs-horizontal .tab-item:hover {
  background: #e9ecef;
  border-color: #20c997;
  transform: translateY(-2px);
}

.mentorship-programs .course-tabs-horizontal .tab-item.active {
  background: #20c997;
  border-color: #20c997;
  color: white;
}

.mentorship-programs .course-tabs-horizontal .tab-item.active h4 {
  color: white;
}

.mentorship-programs .course-tabs-horizontal .tab-item h4 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

/* Responsive styles for horizontal tabs */
@media (max-width: 768px) {
  .mentorship-programs .course-tabs-horizontal {
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .mentorship-programs .course-tabs-horizontal .tab-item {
    padding: 12px 15px;
    min-width: 120px;
  }
  
  .mentorship-programs .course-tabs-horizontal .tab-item h4 {
    font-size: 0.9rem;
  }
  
  .mentorship-programs .content-image img {
    max-width: 220px;
  }
  
  .mentorship-programs .content-header h3 {
    font-size: 1.3rem;
  }
  
  .mentorship-programs .content-header p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .mentorship-programs .course-tabs-horizontal {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .mentorship-programs .course-tabs-horizontal .tab-item {
    width: 100%;
    max-width: 250px;
    padding: 10px 15px;
  }
  
  .mentorship-programs .content-image img {
    max-width: 180px;
  }
  
  .mentorship-programs .content-header h3 {
    font-size: 1.2rem;
  }
  
  .mentorship-programs .content-header p {
    font-size: 0.85rem;
  }
}

/* Mentorship Programs Content Features - Match E-commerce Style */
.mentorship-programs .content-features {
  margin-bottom: 20px;
}

.mentorship-programs .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: -12px;
  padding: 10px;
  padding-left: 0px;
}

.mentorship-programs .feature-icon {
  width: 20px;
  height: 20px;
  background: #20c997;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.mentorship-programs .feature-icon i {
  color: white;
  font-size: 0.7rem;
}

.mentorship-programs .feature-text p {
  margin: 0;
  color: #000000;
  line-height: 1.3;
  font-size: 14px;
}

/* Mentorship Programs Content Layout */
.mentorship-programs .content-panel .row {
  align-items: center;
}

.mentorship-programs .content-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.8rem;
}

.mentorship-programs .content-header p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.mentorship-programs .content-image {
  text-align: center;
  padding: 0 1rem;
}

.mentorship-programs .content-image img {
  max-width: 280px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-header {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  /* font-weight: 800; */
  text-align: center;
  background: linear-gradient(135deg, #000000 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  /* background: linear-gradient(90deg, #20c997, #3498db); */
  border-radius: 2px;
}

.section-subtitle {
  font-size: 16px;
  color: #5a6c7d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  text-align: center;
  font-weight: 400;
}

/* Program Tabs */
.program-tabs {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.nav-tabs {
  border: none;
  margin-bottom: 4rem;
  margin-top: -57px;
  justify-content: center;
  gap: 15px;
  /* background: rgba(255, 255, 255, 0.9); */
  padding: 1rem;
  border-radius: 60px;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
  backdrop-filter: blur(10px);
}

.nav-tabs .nav-link {
  border: 2px solid #0c0c0c;
  background: transparent;
  color: #5a6c7d;
  padding: 0.8rem 1.8rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  position: relative;
  overflow: hidden;
}

.nav-tabs .nav-link::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: left 0.5s;
}

.nav-tabs .nav-link:hover::before {
  left: 100%;
}

.nav-tabs .nav-link:hover {
  background: rgba(32, 201, 151, 0.1);
  color: #20c997;
  border-color: #20c997;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(32, 201, 151, 0.2);
}

.nav-tabs .nav-link.active {
  background: linear-gradient(135deg, #20c997, #1abc9c);
  color: #fff;
  border-color: #20c997;
  box-shadow: 0 8px 25px rgba(32, 201, 151, 0.4);
  transform: translateY(-2px);
}

/* Tab Content */
.tab-content {
  /* background: rgba(255, 255, 255, 0.95); */
  /* border-radius: 20px; */
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  backdrop-filter: blur(10px);
  /* border: 1px solid rgb(90 210 154 / 99%); */
  max-width: 90%;
  margin: 0 auto;
}

.tab-pane {
  padding: 0;
}

.program-content {
  display: flex;
  align-items: stretch;
  min-height: 400px;
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.program-details {
  flex: 0 0 50%;
  width: 50%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

.program-details h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}

.program-details h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  /* background: linear-gradient(90deg, #20c997, #3498db); */
  border-radius: 2px;
}

.program-description {
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  font-weight: 400;
}

.program-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.program-features li {
  padding: 0.4rem 0;
  color: #000000;
  font-size: 15px;
  position: relative;
  padding-left: 2.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.program-features li:hover {
  color: #20c997;
  transform: translateX(5px);
}

.program-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #20c997;
  font-weight: bold;
  font-size: 1.3rem;
  background: rgba(32, 201, 151, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.program-features li:hover:before {
  background: #20c997;
  color: white;
  transform: scale(1.1);
}

.program-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(32, 201, 150, 0), rgba(52, 152, 219, 0));
  border-radius: 12px;
  /* border: 1px solid rgba(32, 201, 151, 0.1); */
}

.stat-item {
  text-align: center;
  flex: 1;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(32, 201, 151, 0.3), transparent);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #000000, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.program-details .btn-primary {
  background: #20c997;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
  align-self: flex-start;
}



.program-details .btn-primary:hover {
  background: #1ba085;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(32, 201, 151, 0.3);
  color: white;
}

.program-image {
  flex: 0 0 50%;
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(135deg, rgba(32, 201, 151, 0.1), rgba(52, 152, 219, 0.1)); */
  z-index: 1;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 10px;
}



/* Mobile Responsive for Programs */
@media (max-width: 768px) {
  .mentorship-programs {
    padding: 3rem 1rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }
  
  .nav-tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
  }
  
  .nav-tabs .nav-link {
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
    margin: 2px;
    border-radius: 20px;
  }
  
  .program-content {
    flex-direction: column;
    min-height: auto;
  }
  
  .program-details {
    padding: 2rem 1.5rem;
    order: 2;
  }
  
  .program-details h3 {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .program-description {
    font-size: 0.95rem;
    text-align: center;
  }
  
  .program-image {
    order: 1;
    height: 180px;
  }
  
  .program-stats {
    gap: 1rem;
    padding: 1rem;
    flex-direction: column;
  }
  
  .stat-item:not(:last-child)::after {
    display: none;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .program-features {
    margin-bottom: 1.5rem;
  }
  
  .program-features li {
    font-size: 0.9rem;
    padding-left: 2rem;
    padding: 0.3rem 0 0.3rem 2rem;
  }
  
  .program-features li:before {
    width: 18px;
    height: 18px;
    font-size: 1rem;
  }
  
  .program-details .btn-primary {
    width: 100%;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .mentorship-programs {
    padding: 2rem 0.5rem;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .nav-tabs .nav-link {
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
  }
  
  .program-details {
    padding: 1.5rem 1rem;
  }
  
  .program-details h3 {
    font-size: 1.3rem;
  }
  
  .program-description {
    font-size: 0.9rem;
  }
  
  .program-image {
    height: 160px;
  }
  
  .program-features li {
    font-size: 0.85rem;
  }
}

/* Services Section */
.services-section {
  padding: 4rem 0;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.services-section .section-header {
  position: relative;
  z-index: 2;
}

.services-section .section-header h2 {
  color: #2c3e50;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #000000 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



.services-section .section-subtitle {
  color: #000000;
}

.services-slider {
  position: relative;
  overflow: hidden;
  margin: 4rem 0;
  z-index: 2;
}

.services-track {
  display: flex;
  animation: slideLeft 40s linear infinite;
  width: calc(350px * 9); /* 6 original cards + 3 duplicates */
  will-change: transform;
  gap: 20px;
}

.services-track:hover {
  animation-play-state: paused;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Ensure animation is always active */
.services-track {
  animation: slideLeft 40s linear infinite !important;
}

@media (max-width: 768px) {
  .services-track {
    animation: slideLeft 30s linear infinite !important;
  }
}

.service-card {
  flex: 0 0 300px;
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem 1.2rem;
  margin: 12px 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  /* background: #e9ecef; */
  /* transform: scaleX(0); */
  /* transition: transform 0.3s ease; */
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  background: #f8f9fa;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #f8f9fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}

.service-card:hover .service-icon {
  transform: scale(1.02);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
}

.service-icon i {
  font-size: 1.8rem;
  color: #6c757d;
  position: relative;
  z-index: 2;
  filter: none;
}

/* Different icon colors for different service cards */
.service-card:nth-child(1) .service-icon i {
  color: #28a745; /* Green for first service */
}

.service-card:nth-child(2) .service-icon i {
  color: #007bff; /* Blue for second service */
}

.service-card:nth-child(3) .service-icon i {
  color: #dc3545; /* Red for third service */
}

.service-card:nth-child(4) .service-icon i {
  color: #ffc107; /* Yellow for fourth service */
}

.service-card:nth-child(5) .service-icon i {
  color: #6f42c1; /* Purple for fifth service */
}

.service-card:nth-child(6) .service-icon i {
  color: #fd7e14; /* Orange for sixth service */
}

.service-card h3 {
  font-size: 1.3rem;
  color: #000000;
  margin-bottom: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.service-card p {
  color: #000000;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  font-weight: 400;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.3rem 0;
  color: #000000;
  font-size: 0.85rem;
  position: relative;
  padding-left: 1.5rem;
  transition: all 0.3s ease;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
  font-size: 0.8rem;
  background: rgba(108, 117, 125, 0.06);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #6c757d;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 1px 4px rgba(108, 117, 125, 0.1);
  position: relative;
  overflow: hidden;
}

.service-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(108, 117, 125, 0.15);
  color: #fff;
  background: #5a6268;
}

/* Slider Navigation Dots */
.slider-dots {
  display: none; /* Hidden as requested */
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3rem;
  z-index: 2;
  position: relative;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(102, 126, 234, 0.5);
}

.dot.active {
  background: #667eea;
  transform: scale(1.2);
  border-color: #667eea;
  box-shadow: 0 0 15px rgba(102, 126, 234, 0.4);
}

.dot:hover {
  background: rgba(102, 126, 234, 0.6);
  transform: scale(1.1);
}

/* Mobile Responsive for Services */
@media (max-width: 768px) {
  .services-section {
    padding: 2.5rem 0.5rem;
  }
  
  .services-section .section-header h2 {
    font-size: 1.8rem;
  }
  
  .services-section .section-subtitle {
    font-size: 0.95rem;
    padding: 0 15px;
  }
  
  .services-track {
    animation: slideLeft 30s linear infinite;
    will-change: transform;
  }
  
  .service-card {
    flex: 0 0 240px;
    padding: 1.2rem 1rem;
    margin: 0 0.4rem;
  }
  
  .service-icon {
    width: 45px;
    height: 45px;
  }
  
  .service-icon i {
    font-size: 1.3rem;
  }
  
  .service-card h3 {
    font-size: 1.1rem;
  }
  
  .service-card p {
    font-size: 0.8rem;
  }
  
  .service-features li {
    font-size: 0.8rem;
    padding-left: 1.5rem;
  }
  
  .service-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 2rem 0.5rem;
  }
  
  .services-section .section-header h2 {
    font-size: 1.5rem;
  }
  
  .services-section .section-subtitle {
    font-size: 0.9rem;
  }
  
  .services-track {
    animation: slideLeft 25s linear infinite;
  }
  
  .service-card {
    flex: 0 0 220px;
    padding: 1rem 0.8rem;
    margin: 0 0.3rem;
  }
  
  .service-icon {
    width: 40px;
    height: 40px;
  }
  
  .service-icon i {
    font-size: 1.2rem;
  }
  
  .service-card h3 {
    font-size: 1rem;
  }
  
  .service-card p {
    font-size: 0.75rem;
  }
  
  .service-features li {
    font-size: 0.75rem;
    padding-left: 1.3rem;
  }
  
  .service-btn {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }
}

/* Impact Numbers Section */
.impact-numbers {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgb(248, 249, 250) 0%, rgb(233, 236, 239) 100%);
  color: #333;
  position: relative;
  overflow: hidden;
}

.impact-numbers .section-header h2 {
  color: #000000;
  text-shadow: none;
  font-size: 32px;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.impact-numbers .section-subtitle {
  color: #000000;
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 400;
}

.impact-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  height: 380px;
}

.impact-card {
  border-radius: 12px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f3f4;
}

/* Blue Card (Top Left) */
.blue-card {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #1976d2;
  grid-column: 1;
  grid-row: 1;
  width: 213%;
}

.blue-card .impact-number {
  color: #1976d2;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  text-shadow: none;
}

.blue-card h3 {
  color: #1976d2;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.blue-card p {
  color: #5c6bc0;
  line-height: 1.4;
  font-size: 0.85rem;
  margin: 0;
}

/* Orange Card (Bottom Left) */
.orange-card {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  color: #f57c00;
  grid-column: 1;
  grid-row: 2;
}

/* Green Card (Bottom Middle) */
.green-card {
  background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
  color: #388e3c;
  grid-column: 2;
  grid-row: 2;
}

.orange-card .impact-icon {
  width: 40px;
  height: 40px;
  background: rgba(245, 124, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
}

.orange-card .impact-icon i {
  font-size: 1.1rem;
  color: #f57c00;
}

.orange-card .impact-number {
  color: #f57c00;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.orange-card h3 {
  color: #f57c00;
  font-size: 1.1rem;
  font-weight: 600;
}

.green-card .impact-icon {
  width: 40px;
  height: 40px;
  background: rgba(56, 142, 60, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
}

.green-card .impact-icon i {
  font-size: 1.1rem;
  color: #388e3c;
}

.green-card .impact-number {
  color: #388e3c;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.green-card h3 {
  color: #388e3c;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Red Card (Bottom Right) */
.red-card {
  background: linear-gradient(135deg, #ffebee, #ffcdd2);
  color: #d32f2f;
  grid-column: 3;
  grid-row: 2;
}

.red-card .impact-icon {
  width: 40px;
  height: 40px;
  background: rgba(211, 47, 47, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
}

.red-card .impact-icon i {
  font-size: 1.1rem;
  color: #d32f2f;
}

.red-card .impact-number {
  color: #d32f2f;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.red-card h3 {
  color: #d32f2f;
  font-size: 1.1rem;
  font-weight: 600;
}

/* White Card (Right - Big Card) */
.white-card {
  background: #fff;
  color: #333;
  grid-column: 3 / span 2;
  grid-row: 1 / span 2;
  border: 1px solid #f1f3f4;
  position: relative;
}

.white-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="20" height="20" fill="rgba(0,0,0,0.02)"/><rect x="60" y="40" width="20" height="20" fill="rgba(0,0,0,0.02)"/><rect x="40" y="60" width="20" height="20" fill="rgba(0,0,0,0.02)"/></svg>') repeat;
  background-size: 100px 100px;
  opacity: 0.1;
  z-index: 0;
}

.white-card > * {
  position: relative;
  z-index: 1;
}

.student-images {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.student-img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.white-card .impact-number {
  color: #2c3e50;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.white-card h3 {
  color: #2c3e50;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.white-card p {
  color: #6c757d;
  line-height: 1.4;
  font-size: 0.85rem;
  margin: 0;
}

/* Mobile Responsive for Impact Numbers */
@media (max-width: 768px) {
  .impact-numbers {
    padding: 2.5rem 1rem;
  }
  
  .impact-numbers .section-header h2 {
    font-size: 1.8rem;
  }
  
  .impact-numbers .section-subtitle {
    font-size: 0.9rem;
  }
  
  .impact-stats {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .impact-card {
    padding: 1.5rem 1rem;
    min-height: 180px;
  }
  
  .blue-card,
  .orange-card,
  .green-card,
  .red-card,
  .white-card {
    grid-column: 1;
    grid-row: auto;
  }
  
  .orange-card .impact-icon,
  .green-card .impact-icon,
  .red-card .impact-icon {
    width: 35px;
    height: 35px;
  }
  
  .orange-card .impact-icon i,
  .green-card .impact-icon i,
  .red-card .impact-icon i {
    font-size: 1rem;
  }
  
  .impact-number {
    font-size: 2rem;
  }
  
  .impact-card h3 {
    font-size: 1rem;
  }
  
  .student-images {
    gap: 0.25rem;
  }
  
  .student-img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .impact-numbers {
    padding: 2rem 0.8rem;
  }
  
  .impact-numbers .section-header h2 {
    font-size: 1.6rem;
  }
  
  .impact-stats {
    gap: 0.8rem;
    margin-top: 1.5rem;
  }
  
  .impact-card {
    padding: 1.2rem 0.8rem;
    min-height: 160px;
  }
  
  .impact-number {
    font-size: 1.8rem;
  }
  
  .impact-card h3 {
    font-size: 0.95rem;
  }
}

/* Free Resources Section */
.free-resources {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
}

.resources-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.resources-text {
  flex: 1;
  max-width: 450px;
}

.resources-text h2 {
  font-size: 28px;
  color: #000000;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.resources-text p {
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.resources-text .btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  background: #6c757d;
  border: none;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(108, 117, 125, 0.15);
}

.resources-text .btn:hover {
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.25);
  color: white;
}

.resources-diagram {
  flex: 1;
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.central-hub {
  position: absolute;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #6c757d, #5a6268);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(108, 117, 125, 0.15);
  border: 2px solid #e9ecef;
  z-index: 10;
}

.hub-inner {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #5a6268, #495057);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dee2e6;
}

.hub-inner i {
  font-size: 1.5rem;
  color: #fff;
}

.resource-cards {
  position: absolute;
  width: 100%;
  height: 100%;
}

.resource-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-140px) rotate(calc(-1 * var(--angle)));
  background: #fafbfc;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 0.6rem 1.2rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  z-index: 5;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.resource-card span {
  font-size: 0.85rem;
  color: #000000;
  font-weight: 500;
}

.resource-card:hover {
  background: #6c757d;
  border-color: #6c757d;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-150px) rotate(calc(-1 * var(--angle))) scale(1.05);
  box-shadow: 0 6px 16px rgba(108, 117, 125, 0.12);
}

.resource-card:hover span {
  color: #fff;
}

.connecting-lines {
  position: absolute;
  width: 100%;
  height: 68%;
  top: 0;
  left: 0;
}

.line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 120px;
  background: #dee2e6;
  transform-origin: bottom center;
  transform: translate(-50%, -50%) rotate(var(--angle));
}

.line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  width: 0;
  height: 0;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  border-bottom: 4px solid #dee2e6;
  transform: translateX(-50%);
}

/* Mobile Responsive for Free Resources */
@media (max-width: 768px) {
  .free-resources {
    padding: 2.5rem 1rem;
  }
  
  .resources-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .resources-text {
    max-width: 100%;
  }
  
  .resources-text h2 {
    font-size: 1.8rem;
  }
  
  .resources-text p {
    font-size: 14px;
  }
  
  .resources-diagram {
    height: 320px;
  }
  
  .central-hub {
    width: 80px;
    height: 80px;
  }
  
  .hub-inner {
    width: 50px;
    height: 50px;
  }
  
  .hub-inner i {
    font-size: 1.2rem;
  }
  
  .resource-card {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-110px) rotate(calc(-1 * var(--angle)));
    padding: 0.5rem 1rem;
  }
  
  .resource-card span {
    font-size: 0.8rem;
  }
  
  .resource-card:hover {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-120px) rotate(calc(-1 * var(--angle))) scale(1.05);
  }
  
  .line {
    height: 90px;
  }
}

/* Free Masterclasses Section */
.free-masterclasses {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.free-masterclasses .container {
  max-width: 1000px;
}

.masterclasses-content {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.masterclasses-text {
  flex: 1;
  max-width: 350px;
}

.masterclasses-text h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.masterclasses-text p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.see-all-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.see-all-link:hover {
  color: #0056b3;
  transform: translateX(5px);
}

.masterclass-carousel {
  flex: 1;
  position: relative;
  overflow: hidden;
  max-width: 640px;
}

.carousel-container {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.masterclass-card {
  min-width: 100%;
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  color: #333;
  position: relative;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.masterclass-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #007bff;
  background: rgba(0, 123, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.certificate-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #28a745;
  font-weight: 600;
}

.certificate-badge i {
  color: #ffc107;
  font-size: 0.8rem;
}

.card-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  color: #333;
}

.highlight-text {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  display: inline-block;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.session-details {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

.detail-item i {
  color: #007bff;
  font-size: 0.8rem;
}

.register-btn {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
}

.register-btn:hover {
  background: linear-gradient(135deg, #218838, #1ba085);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.mentor-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.mentor-details {
  flex: 1;
}

.mentored-by {
  font-size: 0.75rem;
  color: #999;
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.mentor-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #333;
}

.mentor-details p {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.company-logo {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #007bff;
}

.company-tagline {
  font-size: 0.7rem;
  color: #999;
  font-weight: 500;
}

.mentor-image {
  position: relative;
  margin-left: 1rem;
}

.mentor-image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e9ecef;
}

/* Carousel Navigation */
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.nav-btn {
  background: white;
  border: 1px solid #e9ecef;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #666;
}

.nav-btn:hover {
  background: #007bff;
  color: white;
  border-color: #007bff;
  transform: scale(1.1);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-dots {
  display: flex;
  gap: 0.4rem;
}

.free-masterclasses .carousel-dots {
  display: none !important;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  background: #007bff;
  transform: scale(1.2);
}

/* Mobile Responsive for Masterclasses */
@media (max-width: 768px) {
  .free-masterclasses {
    padding: 3rem 1rem;
    margin-top: 200px;
  }
  
  .masterclasses-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .masterclasses-text {
    max-width: 100%;
    text-align: center;
  }
  
  .masterclasses-text h2 {
    font-size: 1.8rem;
  }
  
  .masterclass-card {
    padding: 1.2rem;
  }
  
  .card-content h3 {
    font-size: 1.1rem;
  }
  
  .session-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .register-btn {
    margin-left: 0;
    width: 100%;
  }
  
  .mentor-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  
  .mentor-image {
    margin-left: 0;
    align-self: center;
  }
  
  .carousel-nav {
    gap: 1rem;
  }
  
  .nav-btn {
    width: 30px;
    height: 30px;
  }
}

/* Founder's Message Section */
.founders-message {
  padding: 4rem 0;
  background: #fff;
}

.founders-message .container {
  max-width: 1000px;
}

.founder-content {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.founder-image-section {
  flex: 1;
  position: relative;
  max-width: 400px;
}

.founder-card {
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid #e9ecef;
}

.founder-image {
  position: relative;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.founder-image:hover img {
  transform: scale(1.05);
}

.founder-info {
  padding: 0.8rem;
}

.founder-info h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.founder-info p {
  font-size: 0.9rem;
  color: #20c997;
  margin-bottom: 1rem;
  font-weight: 600;
}

.company-info {
  padding: 0.6rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.company-info span {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
}

.founder-text {
  flex: 1;
  max-width: 450px;
}

.founder-text h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.founder-text p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.founder-text strong {
  color: #20c997;
  font-weight: 700;
}

.founder-text em {
  font-style: italic;
  color: #333;
  font-weight: 500;
}

.founder-signature {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 2px solid #e9ecef;
}

.founder-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.founder-title {
  display: block;
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Mobile Responsive for Founder's Message */
@media (max-width: 768px) {
  .founders-message {
    padding: 3rem 1rem;
  }
  
  .founder-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .founder-text {
    max-width: 100%;
  }
  
  .founder-text h2 {
    font-size: 1.8rem;
  }
  
  .founder-image {
    height: 250px;
  }
  
  .founder-info {
    text-align: center;
  }
  
  .founder-image-section {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .founders-message {
    padding: 2.5rem 0.8rem;
  }
  
  .founder-content {
    gap: 1.5rem;
  }
  
  .founder-text h2 {
    font-size: 1.6rem;
  }
  
  .founder-text p {
    font-size: 0.95rem;
  }
  
  .founder-image {
    height: 220px;
  }
}

/* Employee Carousel Section */
.employee-carousel-section {
  padding: 4rem 0 0 0;
  background: white;
  color: #333;
  margin-bottom: 0;
}

.employee-carousel {
  position: relative;
  /* overflow: hidden; */
  margin: 2rem 0 0 0;
}

.employee-track {
  display: flex;
  animation: slideEmployeesRight 30s linear infinite;
  width: calc(250px * 9);
  gap: 20px;
}

@keyframes slideEmployeesRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

  .employee-item {
    flex: 0 0 250px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
  }

.employee-card {
  width: 100%;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  transition: none;
  margin-bottom: 1rem;
}

.employee-card:hover {
  transform: none;
  box-shadow: none;
}

.employee-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 4px solid #000000;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2), 0 0 0 4px rgba(32, 201, 151, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.employee-image:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(32, 201, 151, 0.3);
  border-color: #000000;
}

.employee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.employee-info {
  text-align: center;
  margin-top: 0.5rem;
}

.employee-info h3 {
  font-size: 1.1rem; /* Slightly smaller for outside positioning */
  margin-bottom: 0.3rem; /* Reduced margin */
  color: #333;
  font-weight: 700; /* Slightly bolder */
}

.employee-role {
  font-size: 0.85rem; /* Slightly smaller for outside positioning */
  color: #007bff; /* Changed color for consistency with other sections */
  font-weight: 600;
  margin-bottom: 0; /* No bottom margin since it's outside the card */
}



.employee-carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem; /* Reduced margin */
  gap: 1rem; /* Reduced gap */
}

.employee-nav-btn {
  background: white;
  border: 1px solid #e9ecef; /* Reduced border */
  color: #666; /* Consistent color */
  width: 35px; /* Reduced size */
  height: 35px; /* Reduced size */
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Adjusted shadow */
}

.employee-nav-btn:hover {
  background: #007bff; /* Consistent hover color */
  border-color: #007bff;
  color: white;
  transform: scale(1.1);
}

.employee-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.employee-carousel-dots {
  display: flex;
  gap: 0.4rem; /* Reduced gap */
}

.employee-dot {
  width: 8px; /* Reduced size */
  height: 8px; /* Reduced size */
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.employee-dot.active {
  background: #007bff; /* Consistent active color */
  transform: scale(1.2);
}

.employee-dot:hover {
  background: #007bff; /* Consistent hover color */
}

/* Pause animation on hover */

/* Responsive Design for Employee Carousel */
@media (max-width: 768px) {
  .employee-carousel-section {
    padding: 2.5rem 1rem 0 1rem;
  }
  
  .employee-carousel-section .section-header h2 {
    font-size: 1.6rem;
  }
  
  .employee-carousel-section .section-subtitle {
    font-size: 0.9rem;
  }
  
  .employee-track {
    animation-duration: 20s;
    gap: 15px;
  }
  
  .employee-item {
    flex: 0 0 180px;
    margin: 0;
    margin-bottom: 50px;
  }
  
  .employee-card {
    width: 100%;
    padding: 0;
    margin-bottom: 0.8rem;
  }
  
  .employee-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 0.8rem;
  }
  
  .employee-info h3 {
    font-size: 0.95rem;
  }
  
  .employee-role {
    font-size: 0.75rem;
    margin-bottom: 0;
  }

  .employee-carousel-nav {
    gap: 0.8rem;
    margin-top: 1rem;
  }

  .employee-nav-btn {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .employee-carousel-section {
    padding: 2.5rem 0.8rem 0 0.8rem;
  }

  .employee-item {
    flex: 0 0 180px; /* Further reduced width */
    margin: 0 0.4rem; /* Reduced margin */
  }

  .employee-card {
    width: 100%;
    padding: 0;
    margin-bottom: 0.6rem;
  }
  
  .employee-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 0.6rem;
  }
  
  .employee-info h3 {
    font-size: 0.9rem; /* Reduced font size */
  }
  
  .employee-role {
    font-size: 0.75rem; /* Reduced font size */
    margin-bottom: 0; /* No bottom margin since it's outside the card */
  }
  


  .employee-carousel-nav {
    gap: 0.6rem; /* Reduced gap */
    margin-top: 0.8rem; /* Reduced margin */
  }

  .employee-nav-btn {
    width: 28px; /* Reduced size */
    height: 28px; /* Reduced size */
  }
}

/* E-commerce Services Section */
.ecommerce-services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

.ecommerce-services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="20" height="20" fill="rgba(255,255,255,0.05)"/><rect x="60" y="40" width="20" height="20" fill="rgba(255,255,255,0.05)"/><rect x="40" y="60" width="20" height="20" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
  background-size: 100px 100px;
  opacity: 0.3;
}

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

/* Left Column - Program Details */
.ecommerce-program-details {
  padding-right: 40px;
}

.program-header .main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.ai-badge {
  background: #ff6b35;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sub-heading {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 25px;
  opacity: 0.9;
}

.program-description {
  margin-bottom: 40px;
}

.program-description p {
  font-size: 1rem;
  line-height: 1.7;
  /* opacity: 0.9; */
  color: white;
  margin: 0;
}

.program-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 5px;
    margin-left: -36px;
    margin-top: -37px;
  flex-wrap: inherit;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 1.2rem;
  color: white;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: #20c997;
  border: none;
}

.cta-buttons .btn-primary:hover {
  background: #1ba085;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(32, 201, 151, 0.3);
}

.cta-buttons .btn-outline-primary {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.cta-buttons .btn-outline-primary:hover {
  background: white;
  color: #1e3c72;
  transform: translateY(-2px);
}

/* Right Column - Compact Form */
.ecommerce-form-container {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.form-header {
  text-align: center;
  margin-bottom: 25px;
}

.form-header h3 {
  font-size: 1.8rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-header p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.ecommerce-form .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.ecommerce-form .form-control,
.ecommerce-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.ecommerce-form .form-control:focus,
.ecommerce-form .form-select:focus {
  border-color: #20c997;
  box-shadow: 0 0 0 0.2rem rgba(32, 201, 151, 0.15);
}

.ecommerce-form .form-control::placeholder {
  color: #999;
  font-size: 0.9rem;
}

.ecommerce-form .btn-primary {
  background: linear-gradient(135deg, #20c997, #17a2b8);
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ecommerce-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(32, 201, 151, 0.3);
}

/* Responsive Design for E-commerce Section */
@media (max-width: 991.98px) {
  .ecommerce-services-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .ecommerce-program-details {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .program-header .main-heading {
    font-size: 2.8rem;
  }
  
  .program-stats {
    gap: 20px;
  }
  
  .ecommerce-form-container {
    padding: 25px;
  }
  
  .form-header h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .ecommerce-services-section {
    padding: 40px 0;
  }
  
  .program-header .main-heading {
    font-size: 1.75rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .ai-badge {
    align-self: flex-start;
  }
  .ai-badge {
    background: #ff6b35;
    color: white;
    padding: 6px 8px;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .sub-heading {
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 25px;
  }

  .program-description p {
    font-size: 0.95rem;
    line-height: 1.7;
    /* opacity: 0.9; */
    color: white;
    text-align: justify;
    margin: 0;
  }

  .program-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-item {
    gap: 10px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .ecommerce-form-container {
    padding: 20px;
  }
  
  .form-header h3 {
    font-size: 1.4rem;
  }
}

/* Technology Section */
.technology-section {
  padding: 35px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.technology-section .container {
  position: relative;
  z-index: 1;
}

.technology-section .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
  text-align: center;
}

.technology-section .section-subtitle {
  font-size: 1.1rem;
  color: #000000;
  /* margin-bottom: 3rem; */
  text-align: center;
  line-height: 1.6;
}

.technology-slider {
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}

.technology-track {
  display: flex;
  animation: slideTechnologiesRight 40s linear infinite;
  width: calc(200px * 18); /* 12 original + 6 duplicate items */
  gap: 20px;
}

@keyframes slideTechnologiesRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.technology-item {
  flex: 0 0 180px;
  margin: 0 10px;
  margin-top: 10px;
  margin-bottom: 17px;
  background: linear-gradient(145deg, #f8f9fa, #e9ecef, #dee2e6);
  border-radius: 10px;
  padding: 18px 12px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid #ced4da;
}

.technology-item:hover {
  transform: translateY(-2px);
  background: linear-gradient(145deg, #ffffff, #f1f3f4, #e9ecef);
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}



/* HTML5 */
.tech-html .tech-icon {
  background: #e34f26;
}

.tech-html .tech-icon i {
  color: white;
}

/* CSS3 */
.tech-css .tech-icon {
  background: #1572b6;
}

.tech-css .tech-icon i {
  color: white;
}

/* JavaScript */
.tech-js .tech-icon {
  background: #f7df1e;
}

.tech-js .tech-icon i {
  color: #000;
}

/* PHP */
.tech-php .tech-icon {
  background: #777bb4;
}

.tech-php .tech-icon i {
  color: white;
}

/* Laravel */
.tech-laravel .tech-icon {
  background: #ff2d20;
}

.tech-laravel .tech-icon i {
  color: white;
}

/* CodeIgniter */
.tech-ci .tech-icon {
  background: #dd4814;
}

.tech-ci .tech-icon i {
  color: white;
}

/* Python */
.tech-python .tech-icon {
  background: #3776ab;
}

.tech-python .tech-icon i {
  color: white;
}

/* React */
.tech-react .tech-icon {
  background: #61dafb;
}

.tech-react .tech-icon i {
  color: #000;
}

/* Node.js */
.tech-node .tech-icon {
  background: #339933;
}

.tech-node .tech-icon i {
  color: white;
}

/* MySQL */
.tech-mysql .tech-icon {
  background: #4479a1;
}

.tech-mysql .tech-icon i {
  color: white;
}

/* MongoDB */
.tech-mongo .tech-icon {
  background: #47a248;
}

.tech-mongo .tech-icon i {
  color: white;
}

/* AWS */
.tech-aws .tech-icon {
  background: #ff9900;
}

.tech-aws .tech-icon i {
  color: #000;
}

/* Docker */
.tech-docker .tech-icon {
  background: #2496ed;
}

.tech-docker .tech-icon i {
  color: white;
}

/* Git */
.tech-git .tech-icon {
  background: #f05032;
}

.tech-git .tech-icon i {
  color: white;
}

/* WordPress */
.tech-wordpress .tech-icon {
  background: #21759b;
}

.tech-wordpress .tech-icon i {
  color: white;
}

.tech-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: all 0.3s ease;
  position: relative;
}

.technology-item:hover .tech-icon {
  transform: scale(1.1) rotate(5deg);
}

.tech-icon i {
  font-size: 2rem;
  transition: all 0.3s ease;
}

.technology-item:hover .tech-icon i {
  transform: scale(1.1);
}

.technology-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #495057;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.technology-item p {
  font-size: 0.85rem;
  color: #6c757d;
  margin: 0;
  font-weight: 400;
  line-height: 1.4;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

/* Pause animation on hover */
.technology-slider:hover .technology-track {
  animation-play-state: paused;
}

/* Responsive Design for Technology Section */
@media (max-width: 768px) {
  .technology-section {
    padding: 60px 0;
  }
  
  .technology-section .section-title {
    font-size: 2.5rem;
  }
  
  .technology-track {
    animation-duration: 25s;
  }
  
  .technology-item {
    flex: 0 0 250px;
    margin: 0 10px;
    padding: 25px 15px;
  }
  
  .tech-icon {
    width: 70px;
    height: 70px;
  }
  
  .tech-icon i {
    font-size: 2rem;
  }
  
  .technology-item h4 {
    font-size: 1.2rem;
  }
  
  .technology-item p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .technology-section .section-title {
    font-size: 2rem;
  }
  
  .technology-track {
    animation-duration: 20s;
  }
  
  .technology-item {
    flex: 0 0 220px;
    margin: 0 8px;
    padding: 20px 12px;
  }
  
  .tech-icon {
    width: 60px;
    height: 60px;
  }
  
  .tech-icon i {
    font-size: 1.8rem;
  }
}

/* Course Highlights Section */
.course-highlights-section {
  padding: 40px 0;
  background: #f8f9fa;
  padding-bottom: 200px;
}

.course-highlights-section .container {
  max-width: 1300px;
}

.course-highlights-section .section-title {
  color: #333;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.course-highlights-section .section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 0rem;
}

/* Left Column - Tabs */
.course-tabs {
  padding: 10px;
  margin-left: 30px;
  height: fit-content;
  position: sticky;
  top: 20px;
}

.tab-item {
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #000000;
  background: transparent;
  max-width: 241px;
}

.tab-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
  border: 2px solid #20c997;
}

.tab-item.active {
  background: #20c997;
  color: white;
  border-color: #20c997;
  box-shadow: 5px 5px 15px rgb(0 0 0);
}

.tab-item.active h4 {
  color: white;
}

.tab-item.active p {
  color: rgba(255, 255, 255, 0.9);
}

.tab-item h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  margin-top: 3px;
  color: #333;
  transition: color 0.3s ease;
}

.tab-item p {
  font-size: 0.9rem;
  margin: 0;
  color: #666;
  transition: color 0.3s ease;
  line-height: 1.4;
}

/* Right Column - Content */
.course-content {
  background: white;
  border-radius: 9px;
  padding: 26px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
  min-height: 340px;
  position: relative;
  overflow: hidden;
  border: 2px solid #000000;
}

.content-panel {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.content-panel.active {
  display: block;
}

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

.content-header {
  margin-bottom: 20px;
}

.content-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}

.content-header p {
  font-size: 15px;
    color: #000000;
    line-height: 1.3;
  margin: 0;
}

.content-features {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: -16px;
  padding: 13px;
    padding-left: 0px;
  /* border-radius: 10px; */
  /* transition: all 0.3s ease; */
}



.feature-icon {
  width: 24px;
  height: 24px;
  background: #20c997;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon i {
  color: white;
  font-size: 0.8rem;
}

.feature-text p {
  margin: 0;
  color: #000000;
  line-height: 1.3;
  font-size: 15px;
}

.content-image {
  text-align: center;
  margin-top: 0px;
}

.content-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Course Highlights */
@media (max-width: 991.98px) {
  .course-highlights-section {
    padding: 50px 0;
  }
  
  .course-highlights-section .section-title {
    font-size: 2rem;
  }
  
  .course-tabs {
    position: static;
    margin-bottom: 25px;
  }
  
  .course-content {
    padding: 25px;
    min-height: auto;
  }
  
  .content-header h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .course-highlights-section {
    padding: 35px 0;
  }
  
  .course-highlights-section .section-title {
    font-size: 1.8rem;
  }
  
  .tab-item {
    padding: 12px;
    margin-bottom: 8px;
  }
  
  .tab-item h4 {
    font-size: 1rem;
  }
  
  .tab-item p {
    font-size: 0.85rem;
  }
  
  .course-content {
    padding: 18px;
  }
  
  .content-header h3 {
    font-size: 1.5rem;
  }
  
  .content-header p {
    font-size: 1rem;
  }
  
  .feature-item {
    padding: 10px;
    margin-bottom: 12px;
  }
  
  .feature-text p {
    font-size: 0.9rem;
  }
}

/* Portfolio Section */
.portfolio-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.portfolio-section .section-title {
  color: #333;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.portfolio-section .section-subtitle {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

/* Portfolio Filters */
.portfolio-filters {
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 2px solid #ddd;
  color: #666;
  padding: 12px 24px;
  margin: 0 8px 8px 0;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: #007bff;
  border-color: #007bff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Portfolio Grid */
.portfolio-grid {
  margin-bottom: 40px;
}

.portfolio-item {
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
}

/* Portfolio Cards */
.portfolio-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.portfolio-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

/* Portfolio Image */
.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
}

/* Portfolio Overlay */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.9), rgba(0, 86, 179, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  padding: 20px;
}

.overlay-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.overlay-content p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.overlay-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.overlay-buttons .btn {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.overlay-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Portfolio Info */
.portfolio-info {
  padding: 25px;
}

.portfolio-info h5 {
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.portfolio-info p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* Portfolio Tags */
.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: #e9ecef;
  color: #495057;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tag:hover {
  background: #007bff;
  color: white;
  transform: translateY(-1px);
}

/* Load More Button */
.load-more-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
  background: linear-gradient(135deg, #0056b3, #004085);
}

/* Portfolio Animation */
.portfolio-item {
  animation: fadeInUp 0.6s ease-out;
}

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

/* Portfolio Filter Animation */
.portfolio-item.hidden {
  display: none;
}

.portfolio-item.show {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design for Portfolio */
@media (max-width: 991.98px) {
  .portfolio-section {
    padding: 80px 0;
  }
  
  .portfolio-section .section-title {
    font-size: 2.2rem;
  }
  
  .filter-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .portfolio-image {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .portfolio-section {
    padding: 60px 0;
  }
  
  .portfolio-section .section-title {
    font-size: 1.8rem;
  }
  
  .portfolio-filters {
    margin-bottom: 30px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    margin: 0 5px 5px 0;
  }
  
  .portfolio-image {
    height: 180px;
  }
  
  .portfolio-info {
    padding: 20px;
  }
  
  .portfolio-info h5 {
    font-size: 1.1rem;
  }
  
  .overlay-content h4 {
    font-size: 1.1rem;
  }
  
  .overlay-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .overlay-buttons .btn {
    width: 100%;
    max-width: 150px;
  }
}

@media (max-width: 575.98px) {
  .portfolio-section .section-title {
    font-size: 1.5rem;
  }
  
  .portfolio-section .section-subtitle {
    font-size: 1rem;
  }
  
  .filter-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .portfolio-image {
    height: 160px;
  }
  
  .portfolio-info {
    padding: 15px;
  }
  
  .load-more-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* New Portfolio Section - WSCUBE Style */
.portfolio-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.portfolio-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  background-size: 50px 50px;
  opacity: 0.3;
}

.portfolio-section .container {
  position: relative;
  z-index: 1;
}

/* Certificate Display */
.certificate-display {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.certificate-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: rotate(-5deg);
  max-width: 400px;
  color: #333;
  position: relative;
}

.certificate-card::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
  border-radius: 25px;
  z-index: -1;
  opacity: 0.3;
}

.certificate-header {
  text-align: center;
  margin-bottom: 30px;
}

.certificate-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.certificate-header h3 {
  color: #1e3a8a;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 2px;
}

.certificate-content {
  text-align: center;
  margin-bottom: 30px;
}

.certificate-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.highlight {
  color: #1e3a8a;
  font-weight: 700;
  font-size: 1rem;
}

.learner-name, .program-name {
  color: #3b82f6;
  font-weight: 700;
  font-size: 1.1rem;
}

.certificate-description {
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
  margin-bottom: 20px;
}

.certificate-seal {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 3px solid #1e3a8a;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.certificate-seal span {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.certificate-footer {
  border-top: 2px solid #e5e7eb;
  padding-top: 20px;
}

.certificate-details p {
  font-size: 0.8rem;
  margin-bottom: 5px;
  color: #666;
}

.verification-link {
  text-align: center;
  margin-top: 15px;
}

.verification-link a {
  color: #3b82f6;
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 500;
}

.verification-link a:hover {
  text-decoration: underline;
}

/* Portfolio Content */
.portfolio-content {
  padding-left: 40px;
}

.portfolio-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.portfolio-card::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: left 0.5s;
}

.portfolio-card:hover::before {
  left: 100%;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  font-size: 1.5rem;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.card-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.card-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.4;
}

/* Project Showcase */
.project-showcase {
  margin-top: 50px;
}

.project-showcase h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-item:hover .project-image {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.project-item:hover .project-overlay {
  transform: translateY(0);
}

.project-overlay h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.project-overlay p {
  font-size: 0.8rem;
  margin: 0;
  opacity: 0.9;
}

/* Responsive Design for New Portfolio */
@media (max-width: 991.98px) {
  .portfolio-section {
    padding: 60px 0;
  }
  
  .certificate-card {
    transform: none;
    margin-bottom: 40px;
  }
  
  .portfolio-content {
    padding-left: 0;
  }
  
  .portfolio-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .portfolio-title {
    font-size: 1.5rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .project-grid {
    grid-template-columns: 1fr;
  }
  
  .certificate-card {
    padding: 25px;
  }
  
  .certificate-logo {
    width: 60px;
    height: 60px;
  }
}



/* Content Wrapper Styles */
.content-wrapper {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  margin: 20px 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section Styles */
.testimonials-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.testimonials-section .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}

.testimonials-section .section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 50px;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
  min-height: 300px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #20c997, #17a2b8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.testimonial-avatar i {
  font-size: 20px;
  color: white;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  text-align: center;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #495057;
  margin: 0;
  text-align: center;
}

/* Testimonials Three-Card Slider */
.testimonials-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
  gap: 20px;
}

.testimonial-item {
  flex: 0 0 calc(33.333% - 13px);
  min-width: calc(33.333% - 13px);
}


/* Responsive Design */
@media (max-width: 992px) {
  .testimonial-item {
    flex: 0 0 calc(50% - 15px);
    min-width: calc(50% - 15px);
  }
  
  .testimonials-wrapper {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .testimonial-item {
    flex: 0 0 100%;
    min-width: 100%;
  }
  
  .testimonials-wrapper {
    padding: 0 20px;
  }
  
  .testimonials-track {
    gap: 20px;
  }
  
  .nav-btn {
    width: 40px;
    height: 40px;
  }
  
  .nav-btn i {
    font-size: 14px;
  }
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section .section-title {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .testimonial-text {
    font-size: 0.9rem;
  }
}

/* Contact Form Section Styles */
.contact-form-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 30%, #2c3e50 70%, #1a252f 100%);
  position: relative;
  /* overflow: hidden; */
  }

/* FAQ Section Styles */
.faq-section {
  padding: 80px 0;
  background: #ffffff;
}

.faq-section .section-title {
    font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.75rem;
  text-align: center;
}

.faq-section .section-subtitle {
  font-size: 1.1rem;
  color: #686a6c;
  margin-bottom: 0rem;
  text-align: center;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 0px;
  /* border: 1px solid #e9ecef; */
  /* border-radius: 8px; */
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid black;
  transition: all 0.3s ease;
}



.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
}



.faq-question span {
  font-size: 19px;
  font-weight: 600;
  color: #000000;
  flex: 1;
  margin-right: 20px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  border-radius: 50%;
  border: 2px solid black;
  font-size: 12px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}



.faq-answer {
  /* background: #f8f9fa; */
  display: none;
}

.faq-content {
  padding: 25px;
  /* border-top: 1px solid #e9ecef; */
}

.faq-content p {
  margin: 0;
  color: #495057;
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive FAQ Styles */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-section .section-title {
    font-size: 2rem;
  }
  
  .faq-question {
    padding: 18px 20px;
  }
  
  .faq-question span {
    font-size: 1rem;
    margin-right: 15px;
  }
  
  .faq-content {
    padding: 20px;
  }
  
  .faq-content p {
  font-size: 0.95rem;
  }
}
  
  
  
  .contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(32, 201, 151, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(23, 162, 184, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(32, 201, 151, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 60% 10%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.contact-form-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(32, 201, 151, 0.15) 0%, rgba(23, 162, 184, 0.15) 100%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 0 100px rgba(32, 201, 151, 0.1);
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.contact-form-section .container::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, rgba(32, 201, 151, 0.12) 0%, rgba(23, 162, 184, 0.12) 100%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite reverse;
  z-index: 1;
  box-shadow: 0 0 80px rgba(23, 162, 184, 0.08);
}

.contact-form-section .container {
  position: relative;
  z-index: 2;
}

.contact-form-section .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  position: relative;
  /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
}



.contact-form-section .section-subtitle {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.5;
  opacity: 0.9;
  text-align: justify;
}

/* Content Points Styles */
.points-list {
  margin-top: 2rem;
}

.point-item {
  display: flex;
  align-items: flex-start;
  /* margin-bottom: 18px; */
  /* padding: 16px; */
  /* background: rgba(255, 255, 255, 0.1); */
  /* border-radius: 10px; */
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
  transition: all 0.3s ease;
  /* border: 1px solid rgba(32, 201, 151, 0.2); */
  backdrop-filter: blur(10px);
}



.point-icon {
  width: 39px;
  height: 32px;
  /* background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%); */
  /* border-radius: 50%; */
  display: flex;
  margin-top: -2px;
  align-items: center;
  justify-content: center;
  /* margin-right: 16px; */
  flex-shrink: 0;
  /* box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3); */
}

.point-icon i {
  color: white;
  font-size: 18px;
}

.point-content h4 {
  font-size: 20px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 30px;
}

.point-content p {
  font-size: 0.9rem;
  color: #ecf0f1;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}

/* Contact Form Styles */
.contact-form-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 1.3);
  border: 1px solid rgba(32, 201, 151, 0.2);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  max-width: 550px;
  margin: -156px auto 0 auto;
  z-index: 999;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  /* background: linear-gradient(135deg, #20c997, #17a2b8); */
  /* box-shadow: 0 0 15px rgba(32, 201, 151, 0.5); */
}

.form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.form-header p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

.contact-form .form-label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #20c997;
  box-shadow: 0 0 0 0.15rem rgba(32, 201, 151, 0.15);
  outline: none;
}

/* Captcha Styles */
.captcha-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.captcha-display {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 6px 10px;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 1rem;
  color: #495057;
  letter-spacing: 1.5px;
  user-select: none;
  min-width: 70px;
  text-align: center;
}

#refreshCaptcha {
  padding: 6px 10px;
  border: 1px solid #dee2e6;
  background: white;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#refreshCaptcha:hover {
  background: #f8f9fa;
  border-color: #20c997;
  color: #20c997;
}

.contact-form .btn-primary {
  background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(32, 201, 151, 0.3);
}

.contact-form .btn-primary:hover {
  background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(32, 201, 151, 0.4);
}

/* Responsive adjustments for contact form section */
@media (max-width: 768px) {
  .contact-form-section {
    padding: 3rem 0;
  }
  
  .contact-form-section::after {
    width: 200px;
    height: 200px;
    top: -30%;
    right: -15%;
  }
  
  .contact-form-section .container::before {
    width: 150px;
    height: 150px;
    bottom: -15%;
    left: -10%;
  }
  
  .contact-form-section .section-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .contact-form-section .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: #ecf0f1;
    opacity: 0.9;
  }
  
  .contact-form-container {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .form-header h3 {
    font-size: 1.3rem;
  }
  
  .form-header p {
    font-size: 0.85rem;
  }
  
  .point-item {
    padding: 12px;
    margin-bottom: 15px;
  }
  
  .point-icon {
    width: 36px;
    height: 36px;
    margin-right: 12px;
  }
  
  .point-icon i {
    font-size: 16px;
  }
  
  .point-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
  }
  
  .point-content p {
    font-size: 0.85rem;
  }
  
  .contact-form .form-control,
  .contact-form .form-select {
    padding: 8px 10px;
    font-size: 0.85rem;
  }
  
  .contact-form .btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Footer Section */
.footer-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ecf0f1;
  padding: 3rem 0 1rem 0;
  margin-top: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  color: #3498db;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #3498db;
}

.footer-logo h3 {
  color: #3498db;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.footer-logo p {
  color: #bdc3c7;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

.social-link:hover {
  background: #3498db;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #3498db;
}

.footer-links a:hover {
  color: #3498db;
  padding-left: 15px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #bdc3c7;
  font-size: 0.9rem;
}

.contact-item i {
  color: #3498db;
  margin-top: 0.2rem;
  min-width: 16px;
}

.contact-item span {
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid rgba(236, 240, 241, 0.1);
  padding-top: 1.5rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #95a5a6;
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #95a5a6;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #3498db;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
  .footer-section {
    padding: 2rem 0 1rem 0;
    margin-top: 0;
  }
  
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .footer-logo h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }
  
  .footer-logo p {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }
  
  .social-links {
    gap: 0.6rem;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links a {
    font-size: 0.85rem;
  }
  
  .contact-item {
    gap: 0.6rem;
    font-size: 0.85rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .footer-bottom-links {
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-section {
    padding: 1.5rem 0 1rem 0;
    margin-top: 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  
  .footer-column h4 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }
  
  .footer-logo h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-logo p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .social-links {
    gap: 0.5rem;
  }
  
  .social-link {
    width: 32px;
    height: 32px;
  }
  
  .footer-links li {
    margin-bottom: 0.4rem;
  }
  
  .footer-links a {
    font-size: 0.8rem;
  }
  
  .contact-item {
    gap: 0.5rem;
    font-size: 0.8rem;
  }
  
  .footer-bottom-content {
    gap: 0.6rem;
  }
  
  .footer-bottom p {
    font-size: 0.8rem;
  }
  
  .footer-bottom-links {
    gap: 0.8rem;
  }
  
  .footer-bottom-links a {
    font-size: 0.8rem;
  }
}

/* Audience Section Styles */
.audience-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 40%, #f8f9fa 100%);
}

.audience-section .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-align: center;
}

.audience-cards-container {
  margin: 2rem auto;
  overflow: hidden;
  max-width: 1100px;
  padding: 0 50px;
  position: relative;
}

.audience-cards-container::before,
.audience-cards-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  pointer-events: none;
  z-index: 2;
}

.audience-cards-container::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.audience-cards-container::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.audience-cards-scroll {
  display: flex;
  gap: 20px;
  padding: 0.5rem 0;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: calc(200px * 9);
  transition: transform 0.1s linear;
}

.audience-cards-scroll::-webkit-scrollbar {
  display: none;
}

.audience-card {
  flex: 0 0 180px;
  background: white;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid black;
  min-width: 180px;
  min-height: 200px;
}



.audience-image {
  width: 118px;
  height: 94px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.audience-card:hover .audience-image {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.audience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.audience-card:hover .audience-image img {
  transform: scale(1.1);
}

.audience-label {
  font-size: 1rem;
  font-weight: 600;
  color: #495057;
  margin: 0;
}

.audience-description {
  margin-top: 2rem;
}

.audience-description p {
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 1.2rem;
  text-align: justify;
}

.audience-description strong {
  color: #20c997;
  font-weight: 600;
}

/* Responsive Design for Audience Section */
@media (max-width: 768px) {
  .audience-section {
    padding: 60px 0;
  }
  
  .audience-section .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .audience-cards-scroll {
    gap: 1rem;
    padding: 0.5rem 0;
  }
  
  .audience-card {
    flex: 0 0 160px;
    padding: 1.2rem;
  }
  
  .audience-image {
    width: 70px;
    height: 70px;
  }
  
  .audience-image i {
    font-size: 1.8rem;
  }
  
  .audience-label {
    font-size: 1rem;
  }
  
  .audience-description p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .audience-section .section-title {
    font-size: 1.8rem;
  }
  
  .audience-card {
    flex: 0 0 140px;
    padding: 1rem;
  }
  
  .audience-image {
    width: 60px;
    height: 60px;
  }
  
  .audience-image i {
    font-size: 1.5rem;
  }
  
  .audience-label {
    font-size: 0.9rem;
  }
  
  .audience-description p {
    font-size: 0.95rem;
  }
}

/* Additional mobile responsive improvements */
@media (max-width: 576px) {
  /* Better section spacing on very small screens */
  section {
    padding: 1.5rem 0;
  }
  
  /* Improved container padding */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Better button sizing */
  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  
  /* Improved card spacing */
  .card, .service-card, .testimonial-card {
    margin-bottom: 1rem;
  }
  
  /* Better text sizing */
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  h4 {
    font-size: 1.1rem;
  }
  
  p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* Better list spacing */
  ul, ol {
    padding-left: 1.2rem;
  }
  
  li {
    margin-bottom: 0.3rem;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .program-header .main-heading {
    font-size: 1.8rem;
  }
  
  .sub-heading {
    font-size: 1rem;
  }
  
  .program-stats {
    flex-direction: row;
    justify-content: space-around;
  }
  
  .stat-item {
    flex: 0 0 auto;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* About Us Section */
.about-us-section {
  padding: 100px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.about-content {
  padding-right: 2rem;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6c63ff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-title {
  font-size: 32px;
  font-weight: 600;
  color: black;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.about-description {
  margin-bottom: 2.5rem;
}

.about-description p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-description p:last-child {
  margin-bottom: 0;
}

.about-btn {
    background: #20c997;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
}

.about-btn:hover {
  background: #1ba085;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(32, 201, 151, 0.3);
  color: white;
  text-decoration: none;
}

/* About Illustration */
.about-image-container {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-illustration {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative Elements */
.decoration-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.decoration-circle-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #6c63ff, #4c51bf);
  top: -50px;
  right: -50px;
  z-index: 1;
}

.decoration-circle-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #38b2ac, #319795);
  bottom: -30px;
  left: -30px;
  z-index: 1;
}

.decoration-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, #6c63ff 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.3;
  top: 20px;
  left: 20px;
  z-index: 1;
}

/* Main Illustration */
.main-illustration {
  position: relative;
  z-index: 2;
}

.person-working {
  position: relative;
  z-index: 3;
}

.person-image {
  width: 658px;
  height: auto;
  /* border-radius: 20px; */
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}


/* Mobile Responsive for About Us */
@media (max-width: 991.98px) {
  .about-us-section {
    padding: 80px 0;
  }
  
  .about-content {
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .about-image-container {
    height: 400px;
  }
  
  .person-image {
    width: 350px;
  }
}

@media (max-width: 768px) {
  .about-us-section {
    padding: 60px 0;
  }
  
  .about-title {
    font-size: 1.75rem;
  }
  
  .about-description p {
    font-size: 1rem;
  }
  
  .about-image-container {
    height: 350px;
  }
  
  .person-image {
    width: 280px;
  }
  
  .decoration-circle-1 {
    width: 200px;
    height: 200px;
  }
  
  .decoration-circle-2 {
    width: 150px;
    height: 150px;
  }
}

/* Blog Section */
.blog-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.blog-section .section-header {
  margin-bottom: 4rem;
}

.blog-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.blog-section .section-subtitle {
  font-size: 1.125rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #20c997;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #6c757d;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-meta i {
  font-size: 0.75rem;
  color: #20c997;
}

.blog-title {
  margin-bottom: 1rem;
  flex: 1;
}

.blog-title a {
  color: #2d3748;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: #20c997;
}

.blog-excerpt {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.blog-read-more {
  color: #20c997;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.blog-read-more:hover {
  color: #1ba085;
  gap: 0.75rem;
}

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(3px);
}

.blog-cta {
  margin-top: 2rem;
}

.blog-cta .btn {
  background: #20c997;
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.blog-cta .btn:hover {
  background: #1ba085;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(32, 201, 151, 0.3);
  color: white;
  text-decoration: none;
}

/* Mobile Responsive for Blog Section */
@media (max-width: 991.98px) {
  .blog-section {
    padding: 80px 0;
  }
  
  .blog-section .section-header h2 {
    font-size: 2rem;
  }
  
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 60px 0;
  }
  
  .blog-section .section-header {
    margin-bottom: 3rem;
  }
  
  .blog-section .section-header h2 {
    font-size: 1.75rem;
  }
  
  .blog-section .section-subtitle {
    font-size: 1rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-image {
    height: 200px;
  }
  
  .blog-content {
    padding: 1.5rem;
  }
  
  .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .blog-title a {
    font-size: 1.125rem;
  }
}

@media (max-width: 576px) {
  .blog-section {
    padding: 50px 0;
  }
  
  .blog-section .section-header h2 {
    font-size: 1.5rem;
  }
  
  .blog-image {
    height: 180px;
  }
  
  .blog-content {
    padding: 1.25rem;
  }
  
  .blog-category {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Blog Page Styles */
.blog-banner-section {
  padding: 120px 0 80px 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.blog-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="20" height="20" fill="rgba(255,255,255,0.05)"/><rect x="60" y="40" width="20" height="20" fill="rgba(255,255,255,0.05)"/><rect x="40" y="60" width="20" height="20" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
  background-size: 100px 100px;
  opacity: 0.3;
}

.blog-banner-content {
  position: relative;
  z-index: 2;
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.banner-description {
  font-size: 16px;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

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

.blog-stats .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
}

.blog-stats .stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
  color: white;
}

.banner-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.banner-decoration .decoration-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.banner-decoration .decoration-1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  top: -100px;
  right: -100px;
}

.banner-decoration .decoration-2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  bottom: -50px;
  left: -50px;
}

.banner-decoration .decoration-dots {
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 2px, transparent 2px);
  background-size: 25px 25px;
  opacity: 0.3;
  top: 20%;
  left: 10%;
}

/* Blog Filter Section */
.blog-filter-section {
  padding: 2rem 0;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.blog-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-tab {
  background: white;
  border: 2px solid #e9ecef;
  color: #495057;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-tab:hover {
  border-color: #6c63ff;
  color: #6c63ff;
  transform: translateY(-2px);
}

.filter-tab.active {
  background: #6c63ff;
  border-color: #6c63ff;
  color: white;
}

/* Featured Blog Section */
.featured-blog-section {
  padding: 80px 0;
  background: white;
}

.featured-blog-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.featured-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.featured-blog-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.featured-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-blog-card:hover .featured-blog-image img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ff6b35;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.featured-blog-content {
  padding: 2.5rem;
}

.featured-blog-content .blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.blog-category {
  background: #e3f2fd;
  color: #1976d2;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-date,
.blog-read-time {
  color: white;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}

.featured-blog-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.featured-blog-excerpt {
  font-size: 1.125rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: #6c63ff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.author-name {
  font-weight: 600;
  color: #2d3748;
}

.author-title {
  font-size: 0.875rem;
  color: #6c757d;
}

.featured-read-btn {
  background: #6c63ff;
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.featured-read-btn:hover {
  background: #5a52d5;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108, 99, 255, 0.3);
}

/* Blog Posts Section */
.blog-posts-section {
  padding: 15px 0;
  background: #f8f9fa;
}

.explore-more-btn {
  background: #20c997;
  border: none;
  padding: 12px 14px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 3px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
  color: white;
}

.explore-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(32, 201, 151, 0.4);
  background: #1bb085;
  color: white;
}

/* Clients Logo Section */
.clients-logo-section {
  padding: 80px 0;
  background: white;
  overflow: hidden;
}

.clients-logo-slider {
  margin-top: 50px;
  overflow: hidden;
  position: relative;
}

.clients-logo-track {
  display: flex;
  animation: slideClientsLeft 25s linear infinite;
  gap: 40px;
  align-items: center;
}

.client-logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100px;
  width: 200px;
}

.client-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
}

@keyframes slideClientsLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Awards & Recognition Section */
.awards-recognition-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.award-card {
  background: transparent;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.award-image {
  position: relative;
  overflow: hidden;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.award-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.award-content {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.award-content h4 {
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.award-year {
  background: #20c997;
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

/* Other Website Development Services Section */
.other-services-section {
  padding: 80px 0;
  background: white;
}

.other-services-section .row {
  justify-content: center;
}

.other-services-section .service-card {
  background: white;
  border-radius: 2px;
  padding: 17px 18px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.other-services-section .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.other-services-section .service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #20c997, #17a2b8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: white;
  transition: all 0.3s ease;
}

.other-services-section .service-card:hover .service-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #17a2b8, #20c997);
}

.other-services-section .service-card h4 {
  color: #333;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.other-services-section .service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.other-services-section .service-link {
  background: #20c997;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(32, 201, 151, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.other-services-section .service-link:hover {
  background: #1ba085;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(32, 201, 151, 0.4);
}

.other-services-section .service-link i {
  transition: transform 0.3s ease;
}

.other-services-section .service-link:hover i {
  transform: translateX(3px);
}

/* Certificate Modal */
.certificate-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.certificate-modal-content {
  position: relative;
  margin: 2% auto;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.certificate-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.certificate-modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.certificate-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.certificate-modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

.certificate-modal-image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 20px;
}

.certificate-modal-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.download-btn {
  background: #20c997;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(32, 201, 151, 0.3);
  color: white;
  text-decoration: none;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-post-card {
  background: white;
  border-bottom-left-radius: 60px;
  border-top-right-radius: 60px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 1.3);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4);
}

.blog-post-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image img {
  transform: scale(1.05);
}

.blog-category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(108, 99, 255, 0.9);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-post-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #6c757d;
  font-size: 0.875rem;
}

.blog-post-title {
  margin-bottom: 1rem;
}

.blog-post-title a {
  color: #2d3748;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-post-title a:hover {
  color: #6c63ff;
}

.blog-post-excerpt {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.blog-post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
  margin-top: auto;
}

.blog-author-small {
  color: #6c757d;
  font-size: 0.875rem;
}

.read-more-link {
  background: #20c997;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(32, 201, 151, 0.3);
}

.read-more-link:hover {
  background: #1ba085;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(32, 201, 151, 0.4);
}

.load-more-btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.newsletter-content {
  text-align: center;
}

.newsletter-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  font-size: 2rem;
}

.newsletter-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.newsletter-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto 2rem auto;
}

.newsletter-form .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-form .form-control {
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border-radius: 0;
}

.newsletter-form .btn {
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
  background: #ff6b35;
  border-radius: 0;
}

.newsletter-form .btn:hover {
  background: #e55a2b;
}

.newsletter-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

.newsletter-features .feature-item i {
  color: #4caf50;
}

/* Blog Mobile Responsive */
@media (max-width: 991.98px) {
  .banner-title {
    font-size: 2.5rem;
  }
  
  .blog-stats {
    gap: 2rem;
  }
  
  .blog-stats .stat-number {
    font-size: 2rem;
  }
  
  .featured-blog-title {
    font-size: 1.75rem;
  }
  
  .newsletter-content h3 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .blog-banner-section {
    padding: 80px 0 60px 0;
  }
  
  .banner-title {
    font-size: 2rem;
  }
  
  .banner-description {
    font-size: 1rem;
  }
  
  .blog-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .blog-filter-tabs {
    gap: 0.5rem;
  }
  
  .filter-tab {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .featured-blog-content {
    padding: 1.5rem;
  }
  
  .featured-blog-title {
    font-size: 1.5rem;
  }
  
  .featured-blog-excerpt {
    font-size: 1rem;
  }
  
  .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .newsletter-content h3 {
    font-size: 1.75rem;
  }
  
  .newsletter-features {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .banner-title {
    font-size: 1.75rem;
  }
  
  .blog-filter-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  
  .filter-tab {
    flex-shrink: 0;
  }
  
  .featured-blog-content .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .blog-post-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

/* Animation for filtered posts */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Page Styles */
.contact-banner-section {
  padding: 120px 0 80px 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="20" height="20" fill="rgba(255,255,255,0.05)"/><rect x="60" y="40" width="20" height="20" fill="rgba(255,255,255,0.05)"/><rect x="40" y="60" width="20" height="20" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
  background-size: 100px 100px;
  opacity: 0.3;
}

.contact-banner-content {
  position: relative;
  z-index: 2;
}

.contact-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

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

.contact-stats .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
}

.contact-stats .stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
  color: white;
}

/* Contact Details Section */
.contact-details-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-detail-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-detail-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #20c997, #17a2b8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.contact-detail-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #2d3748;
}

.contact-info {
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
  font-size: 0.95rem;
}

.contact-action {
  margin-top: auto;
}

.contact-btn {
  background: #20c997;
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  border: none;
  cursor: pointer;
}

.contact-btn:hover {
  background: #1ba085;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.status-badge.online {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.status-badge.online::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #28a745;
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 2s infinite;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links .social-link {
  width: 40px;
  height: 40px;
  background: #20c997;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links .social-link:hover {
  background: #1ba085;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
}

/* Contact Form and Map Section */
.contact-form-map-section {
  padding: 80px 0;
  background: white;
}

.contact-form-container {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #6c757d;
  font-size: 1.1rem;
}

.contact-form .form-label {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #20c997;
  box-shadow: 0 0 0 0.2rem rgba(32, 201, 151, 0.15);
  outline: none;
}

.contact-form .btn-primary {
  background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(32, 201, 151, 0.3);
}

.captcha-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.captcha-display {
  background: #e9ecef;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #495057;
  min-width: 120px;
  text-align: center;
}

/* Map Container */
.map-container {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-header {
  text-align: center;
  margin-bottom: 2rem;
}

.map-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.map-header p {
  color: #6c757d;
  font-size: 1.1rem;
}

.map-wrapper {
  margin-bottom: 2rem;
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-item i {
  color: #20c997;
  font-size: 1.2rem;
  margin-top: 0.2rem;
  min-width: 20px;
}

.info-item strong {
  color: #2d3748;
}

/* Pulse animation for online status */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

/* Responsive Design for Contact Page */
@media (max-width: 991.98px) {
  .contact-stats {
    gap: 2rem;
  }
  
  .contact-form-container,
  .map-container {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .contact-stats .stat-number {
    font-size: 1.25rem;
  }
  
  .contact-detail-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-form-container,
  .map-container {
    padding: 1.5rem;
  }
  
  .form-header h3,
  .map-header h3 {
    font-size: 1.5rem;
  }
  
  .map-info {
    gap: 0.75rem;
  }
  
  .info-item {
    padding: 0.75rem;
  }
}

/* Blog Detail Page Styles */
.blog-detail-banner-section {
  padding: 120px 0 80px 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.blog-detail-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="20" height="20" fill="rgba(255,255,255,0.05)"/><rect x="60" y="40" width="20" height="20" fill="rgba(255,255,255,0.05)"/><rect x="40" y="60" width="20" height="20" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
  background-size: 100px 100px;
  opacity: 0.3;
}

.blog-detail-banner-content {
  position: relative;
  z-index: 2;
}

.blog-breadcrumb {
  margin-bottom: 1.5rem;
}

.blog-breadcrumb .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.blog-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.blog-breadcrumb .breadcrumb-item a:hover {
  color: white;
}

.blog-breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.9);
}

.blog-category-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.blog-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 1.5rem;
}

.blog-detail-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.blog-detail-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  max-width: 740px;
  margin: 0 auto;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #20c997, #17a2b8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: white;
  font-size: 1rem;
}

.author-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.blog-meta-items {
  display: flex;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

.blog-meta-items i {
  color: #20c997;
}

.blog-featured-image {
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.featured-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 1rem;
  background: white;
}

.featured-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.blog-content-section {
  padding: 0 0 40px 0;
}

.blog-article {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.article-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
}

.article-content .lead {
  font-size: 1.1rem;
  font-weight: 400;
  color: #2d3748;
  margin-bottom: 1.5rem;
}

.article-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin: 1.25rem 0 0.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #20c997;
}

.article-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin: 1rem 0 0.5rem 0;
}

.article-content p {
  margin-bottom: 0.75rem;
}

.article-content ul, 
.article-content ol {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.25rem;
}

.blog-quote {
  background: #f8f9fa;
  border-left: 4px solid #20c997;
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  font-style: italic;
  font-size: 1rem;
  color: #495057;
  border-radius: 0 8px 8px 0;
}

.article-tags {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.article-tags h5 {
  color: #2d3748;
  margin-bottom: 0.75rem;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: rgba(32, 201, 151, 0.1);
  color: #20c997;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Author Bio */
.author-bio {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  display: flex;
  gap: 1.5rem;
}

.author-bio-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #20c997, #17a2b8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  flex-shrink: 0;
}

.author-bio-content h4 {
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.author-bio-title {
  color: #20c997;
  font-weight: 600;
  margin-bottom: 1rem;
}

.author-bio-description {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.author-social-links {
  display: flex;
  gap: 0.5rem;
}

.author-social-links .social-link {
  width: 35px;
  height: 35px;
  background: #f8f9fa;
  color: #6c757d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-social-links .social-link:hover {
  background: #20c997;
  color: white;
}

/* Comments Section */
.comments-section {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.comments-section h3 {
  color: #2d3748;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e9ecef;
}

.comment {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f1f3f4;
}

.comment:last-of-type {
  border-bottom: none;
  margin-bottom: 1.5rem;
}

.comment-avatar {
  width: 45px;
  height: 45px;
  background: #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  flex-shrink: 0;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.comment-header h5 {
  color: #2d3748;
  font-size: 1rem;
  margin: 0;
}

.comment-date {
  color: #6c757d;
  font-size: 0.875rem;
}

.comment-content p {
  color: #4a5568;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.reply-btn {
  background: none;
  border: none;
  color: #20c997;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0;
}

.reply-btn:hover {
  color: #1ba085;
}

.comment-form {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.comment-form h4 {
  color: #2d3748;
  margin-bottom: 1rem;
}

.comment-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.comment-form .form-control:focus {
  border-color: #20c997;
  box-shadow: 0 0 0 0.2rem rgba(32, 201, 151, 0.15);
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 2rem;
}

.sidebar-widget {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.sidebar-widget h4 {
  color: #2d3748;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

/* Share Buttons */
.share-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.share-btn.facebook {
  background: #1877f2;
  color: white;
}

.share-btn.twitter {
  background: #1da1f2;
  color: white;
}

.share-btn.linkedin {
  background: #0077b5;
  color: white;
}

.share-btn.copy {
  background: #6c757d;
  color: white;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
  text-decoration: none;
}

/* Related Posts */
.related-posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-post {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.related-post:hover {
  background: #f8f9fa;
}

.related-post-image {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-post-content h5 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.related-post-content h5 a {
  color: #2d3748;
  text-decoration: none;
  line-height: 1.3;
}

.related-post-content h5 a:hover {
  color: #20c997;
}

.related-post-date {
  color: #6c757d;
  font-size: 0.8rem;
}

/* Newsletter Form */
.newsletter-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.newsletter-form .form-control:focus {
  border-color: #20c997;
  box-shadow: 0 0 0 0.2rem rgba(32, 201, 151, 0.15);
}

/* Categories List */
.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-list li {
  margin-bottom: 0.75rem;
}

.categories-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4a5568;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f3f4;
  transition: color 0.3s ease;
}

.categories-list a:hover {
  color: #20c997;
}

.categories-list span {
  color: #6c757d;
  font-size: 0.875rem;
}

/* Responsive Design for Blog Detail */
@media (max-width: 991.98px) {
  .blog-detail-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .blog-meta-items {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .blog-article {
    padding: 2rem;
  }
  
  .author-bio {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .blog-detail-title {
    font-size: 2rem;
  }
  
  .featured-image {
    height: 250px;
  }
  
  .blog-article {
    padding: 1.5rem;
  }
  
  .article-content {
    font-size: 1rem;
  }
  
  .article-content h2 {
    font-size: 1.5rem;
  }
  
  .article-content h3 {
    font-size: 1.25rem;
  }
  
  .sidebar-widget {
    padding: 1.5rem;
  }
  
  .share-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  
  .related-post {
    padding: 0.75rem;
  }
  
  .comment {
    gap: 0.75rem;
  }
  
  .comment-avatar {
    width: 40px;
    height: 40px;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  /* This can be expanded based on design requirements */
}

/* Portfolio Showcase Section */
.portfolio-showcase-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.portfolio-showcase-section .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.75rem;
  text-align: center;
}

.portfolio-showcase-section .section-subtitle {
  font-size: 1.1rem;
  color: #686a6c;
  margin-bottom: 3rem;
  text-align: center;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.portfolio-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 300%; /* 3 slides */
}

.portfolio-slide {
  flex: 0 0 33.333%;
  width: 33.333%;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 30px;
  background: transparent;
}

.portfolio-website-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: none;
  aspect-ratio: auto;
  background: transparent;
}


.website-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 0;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}

.website-image:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.website-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Website Image Overlay */
.website-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.website-image:hover .website-overlay {
  opacity: 1;
}

.arrow-icon {
  color: white;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.website-overlay:hover .arrow-icon {
  transform: scale(1.2);
}




/* Website Info Section */
.website-info {
  padding: 15px 10px;
  text-align: center;
  background: transparent;
  border-radius: 0;
  margin-top: 0;
  border: none;
}

.website-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.3;
}

.website-type {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  font-weight: 400;
}



/* Static Portfolio Grid Styles */
.portfolio-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  padding: 0;
}

/* Additional spacing for website info */
.portfolio-website-card {
  margin-bottom: 0;
}


/* About Us Page Styles */
.value-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 4px 4px 8px rgb(0 0 0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 280px;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.6);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: black;
  font-size: 24px;
  border: 2px solid black;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.value-card h4 {
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.value-card p {
  color: #000;
  line-height: 1.5;
  margin: 0;
  font-size: 0.9rem;
}

.team-stats {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 40px 20px;
  border-radius: 15px;
  margin: 40px 0;
}

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

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #20c997;
  margin-bottom: 10px;
}

.stat-item p {
  color: #666;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

.cta-section {
  background: #20c997;
  padding: 40px 20px;
  border-radius: 0;
  color: white;
  margin-top: 0px;
}

.cta-section h3 {
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 20px;
}

.cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: white;
  color: #20c997;
  border: 2px solid white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  margin: 0;
  flex-shrink: 0;
}

.cta-section .btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  margin: 0;
  flex-shrink: 0;
}

.cta-section .btn-primary:hover {
  background: #f8f9fa;
  color: #20c997;
  border-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-outline-light:hover {
  background: white;
  color: #20c997;
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Our Values Section */
.our-values-section {
  padding: 80px 0;
  background: #f8f9fa;
}

/* Our Services Section */
.our-services-section {
  padding: 80px 0;
  background: white;
}

.service-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  height: 100%;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
}


.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 24px;
}

.service-card h4 {
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

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

.service-features li {
  color: #555;
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

/* Team Stats Section */
.team-stats-section {
  padding: 60px 0;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -33px;
    
}

.team-stats-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.team-stats-section .row {
  gap: 30px;
  justify-content: center;
  flex-wrap: nowrap;
}

.team-stats-section .col-lg-3 {
  flex: 0 0 auto;
  width: auto;
  min-width: 150px;
  margin-bottom: 0;
}

/* Team Stats Mobile Responsive */
@media (max-width: 768px) {
  .team-stats-section {
    padding: 30px 0;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .team-stats-section .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .team-stats-section .row {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
  .team-stats-section .col-lg-3 {
    flex: 0 0 calc(50% - 7.5px);
    width: calc(50% - 7.5px);
    min-width: auto;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
  }
  
  .team-stats-section .stat-item {
    padding: 15px 8px;
    text-align: center;
    width: 100%;
    max-width: 120px;
  }
  
  .team-stats-section .stat-item h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    line-height: 1.2;
  }
  
  .team-stats-section .stat-item p {
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .team-stats-section {
    padding: 25px 0;
  }
  
  .team-stats-section .container {
    max-width: 400px;
    padding: 0 15px;
  }
  
  .team-stats-section .col-lg-3 {
    flex: 0 0 calc(50% - 5px);
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
  
  .team-stats-section .row {
    gap: 10px;
  }
  
  .team-stats-section .stat-item {
    padding: 12px 5px;
    max-width: 100px;
  }
  
  .team-stats-section .stat-item h3 {
    font-size: 1.5rem;
    margin-bottom: 3px;
  }
  
  .team-stats-section .stat-item p {
    font-size: 0.75rem;
  }
}

/* Why Choose Us Section */
.why-choose-us-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.feature-card {
  background: #fff;
  padding: 20px 15px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f0f0f0;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #20c997, #17a2b8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  color: #666;
  line-height: 1.5;
  margin: 0;
  font-size: 0.9rem;
}

/* Call to Action Section */
/* .cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.cta-section h3 {
  color: white;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 15px 40px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  min-width: 180px;
} */

/* .cta-buttons .btn-primary {
  background: white;
  color: #667eea;
  border: none;
} */

/* .cta-buttons .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline-light {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.cta-buttons .btn-outline-light:hover {
  background: white;
  color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
} */

/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Responsive for About Us */
@media (max-width: 768px) {
  .value-card {
    margin-bottom: 20px;
  }
  
  .stat-item h3 {
    font-size: 2rem;
  }
  
  .cta-section {
    padding: 50px 20px;
  }
  
  .cta-section h3 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .cta-section .btn-primary,
  .cta-section .btn-outline-light {
    width: 100%;
    max-width: 250px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card,
  .feature-card {
    margin-bottom: 30px;
  }
  
  .our-values-section,
  .our-services-section,
  .team-stats-section,
  .why-choose-us-section {
    padding: 60px 0;
  }
}

/* Mobile Responsive for Portfolio Showcase */
@media (max-width: 992px) {
  .portfolio-showcase-section {
    padding: 60px 0;
  }
  
  .portfolio-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .portfolio-showcase-section {
    padding: 50px 0;
  }
  
  .portfolio-showcase-section .section-title {
    font-size: 1.6rem;
  }
  
  .portfolio-showcase-section .section-subtitle {
    font-size: 1rem;
  }
  
  .portfolio-track {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .portfolio-website-card {
    aspect-ratio: auto;
  }
  
  .website-image {
    height: 180px;
  }
  
  /* Touch devices - show overlay on tap */
  .website-image:active .website-overlay {
    opacity: 1;
  }
  
  
  
  .website-info {
    padding: 12px 8px;
  }
  
  .website-name {
    font-size: 1rem;
  }
  
  .website-type {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .portfolio-showcase-section {
    padding: 40px 0;
  }
  
  .portfolio-showcase-section .section-title {
    font-size: 1.4rem;
  }
  
  .portfolio-showcase-section .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  
  .portfolio-container {
    padding: 0 10px;
  }
  
  
  .portfolio-dot {
    width: 10px;
    height: 10px;
  }
}

/* Career Page Styles */
.career-banner-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.career-main-heading {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.career-sub-heading {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.career-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.career-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.career-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.career-stats .stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.career-stats .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.career-stats .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.career-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.career-banner-image img {
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Why Work With Us Section */
.why-work-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.benefit-card {
  background: white;
  padding: 25px 20px;
  border-radius: 2px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: white;
  border: 2px solid black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
  color: black;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card h4 {
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #000;
  line-height: 1.5;
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Open Positions Section */
.open-positions-section {
  padding: 60px 0;
  background: white;
}

.job-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 2px;
  padding: 20px 18px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border-color: #20c997;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.job-header h4 {
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.job-type {
  background: #20c997;
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
}

.job-details {
  margin-bottom: 12px;
}

.job-details p {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.job-details i {
  color: #20c997;
  width: 14px;
}

.job-description {
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 15px;
}

.skill-tag {
  background: #f8f9fa;
  color: #495057;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  border: 1px solid #e9ecef;
}

.job-card .btn {
  width: 100%;
  padding: 0.6rem;
  font-weight: 600;
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .career-main-heading {
    font-size: 2.5rem;
  }
  
  .career-sub-heading {
    font-size: 1.2rem;
  }
  
  .career-stats {
    gap: 1rem;
  }
  
  .career-cta-buttons {
    flex-direction: column;
  }
  
  .career-cta-buttons .btn {
    width: 100%;
  }
  
  .job-header {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .benefit-card {
    padding: 20px 15px;
  }
  
  .benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .benefit-card h4 {
    font-size: 1.1rem;
  }
  
  .benefit-card p {
    font-size: 0.85rem;
  }
  
  .job-card {
    padding: 18px 15px;
  }
  
  .job-header h4 {
    font-size: 1.1rem;
  }
  
  .job-details p {
    font-size: 0.8rem;
  }
  
  .job-description {
    font-size: 0.85rem;
  }
  
  .skill-tag {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
  }
  
  /* Modal Responsive */
  .modal-header {
    padding: 0.8rem 1rem;
  }
  
  .modal-title {
    font-size: 1.2rem;
  }
  
  .modal-body {
    padding: 1rem;
  }
  
  .modal-footer {
    padding: 0.8rem 1rem;
  }
  
  .form-label {
    font-size: 0.85rem;
  }
  
  .form-control, .form-select {
    padding: 0.5rem;
    font-size: 0.85rem;
  }
  
  .form-check-label {
    font-size: 0.8rem;
  }
  
  .modal-footer .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* Apply Now Button - Same as Read More Button */
.apply-now-btn {
  background: #20c997;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(32, 201, 151, 0.3);
  border: none;
  width: 100%;
}

.apply-now-btn:hover {
  background: #1ba085;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(32, 201, 151, 0.4);
}

/* Job Application Modal Styles */
.modal-content {
  border-radius: 2px;
  border: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
  background: linear-gradient(135deg, #20c997, #17a2b8);
  color: white;
  border-radius: 2px 2px 0 0;
  border-bottom: none;
  padding: 1rem 1.5rem;
}

.modal-title {
  font-weight: 600;
  font-size: 1.3rem;
}

.btn-close {
  filter: invert(1);
}

.modal-body {
  padding: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.form-control, .form-select {
  border: 2px solid #e9ecef;
  border-radius: 2px;
  padding: 0.6rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.form-control:focus, .form-select:focus {
  border-color: #20c997;
  box-shadow: 0 0 0 0.2rem rgba(32, 201, 151, 0.25);
}

.form-check-input:checked {
  background-color: #20c997;
  border-color: #20c997;
}

.form-check-label {
  font-size: 0.85rem;
  line-height: 1.4;
}

.form-text {
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.modal-footer {
  border-top: 1px solid #e9ecef;
  padding: 1rem 1.5rem;
}

.modal-footer .btn {
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  border-radius: 2px;
  font-size: 0.9rem;
}

.modal-footer .btn-primary {
  background: #20c997;
  border-color: #20c997;
}

.modal-footer .btn-primary:hover {
  background: #1ba085;
  border-color: #1ba085;
}

/* Modal Form Spacing */
.modal-body .mb-3 {
  margin-bottom: 1rem;
}

.modal-body .row .mb-3 {
  margin-bottom: 1rem;
}

/* Mission & Vision Section */
.mission-vision-section {
  padding: 80px 0;
  background: white;
}

.mission-vision-content {
  padding: 0 1rem;
}

.mission-vision-content .section-label {
  display: inline-block;
  background: linear-gradient(135deg, #20c997, #17a2b8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.mission-vision-content .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.mission-vision-content .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.mission-vision-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.mission-vision-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mission-vision-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #20c997, #17a2b8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
}

.mission-vision-text h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.mission-vision-text p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

.mission-vision-icon-container {
  position: relative;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.mission-vision-icon-large {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #20c997, #17a2b8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  box-shadow: 0 15px 35px rgba(32, 201, 151, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-vision-icon-large::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.mission-vision-icon-large:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 45px rgba(32, 201, 151, 0.4);
}

.mission-vision-icon-large:hover::before {
  transform: rotate(45deg) translate(100%, 100%);
}

.mission-vision-illustration {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-vision-illustration .decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(32, 201, 151, 0.1), rgba(23, 162, 184, 0.1));
}

.mission-vision-illustration .decoration-circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.mission-vision-illustration .decoration-circle-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

.mission-vision-illustration .decoration-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(32, 201, 151, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: moveDots 20s linear infinite;
}

.mission-vision-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mission-vision-image:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mission-vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.mission-vision-image:hover img {
  transform: scale(1.1);
}

/* Mission & Vision Responsive */
@media (max-width: 991.98px) {
  .mission-vision-section {
    padding: 60px 0;
  }
  
  .mission-vision-content {
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
  
  .mission-vision-content .section-title {
    font-size: 2rem;
  }
  
  .mission-vision-icon-container {
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
  
  .mission-vision-icon-large {
    width: 150px;
    height: 150px;
    font-size: 3rem;
  }
  
  .mission-vision-illustration {
    height: 400px;
  }
  
  .mission-vision-image {
    max-width: 350px;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .mission-vision-section {
    padding: 50px 0;
  }
  
  .mission-vision-content .section-title {
    font-size: 1.8rem;
  }
  
  .mission-vision-item {
    padding: 1.5rem;
  }
  
  .mission-vision-icon-large {
    width: 120px;
    height: 120px;
    font-size: 2.5rem;
  }
  
  .mission-vision-illustration {
    height: 300px;
  }
  
  .mission-vision-image {
    max-width: 280px;
    height: 280px;
  }
  
  .mission-vision-illustration .decoration-circle-1 {
    width: 120px;
    height: 120px;
  }
  
  .mission-vision-illustration .decoration-circle-2 {
    width: 100px;
    height: 100px;
  }
}

/* Comparison Table Styles */
.comparison-table-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}


.comparison-table-wrapper {
  overflow-x: auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.comparison-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
}

.comparison-table thead th {
  padding: 20px;
  font-weight: 600;
  text-align: center;
  border: none;
  background: linear-gradient(135deg, #1F3BB3 0%, #05C3FB 100%);
  color: white;
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table tbody td {
  padding: 18px 20px;
  text-align: center;
  border: none;
  border-bottom: 1px solid #e9ecef;
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  background-color: #f8f9fa;
  color: #1F3BB3;
  text-align: left;
}

.comparison-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}

.comparison-table tbody tr:nth-child(odd) {
  background-color: #f8f9fa;
}

.comparison-table tbody tr:hover {
  background-color: #e3f2fd;
  transition: background-color 0.3s ease;
}

.comparison-tip {
  margin-top: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #1F3BB3 0%, #05C3FB 100%);
  border-radius: 10px;
  color: white;
}

.comparison-tip strong {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
}

.comparison-tip p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Ecommerce Services Cards Section Styles */
.ecommerce-services-cards-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.ecommerce-services-cards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.ecommerce-service-card {
  background: white;
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #1F3BB3;
  position: relative;
  overflow: hidden;
}

.ecommerce-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #1F3BB3 0%, #05C3FB 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.ecommerce-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(31, 59, 179, 0.2);
}

.ecommerce-service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #1F3BB3 0%, #05C3FB 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(31, 59, 179, 0.3);
  transition: transform 0.3s ease;
}

.service-card-icon i {
  font-size: 36px;
  color: white;
}

.ecommerce-service-card:hover .service-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card-icon-2 {
  background: linear-gradient(135deg, #05C3FB 0%, #34B1AA 100%) !important;
}

.service-card-icon-3 {
  background: linear-gradient(135deg, #34B1AA 0%, #4DA761 100%) !important;
}

.service-card-icon-4 {
  background: linear-gradient(135deg, #4DA761 0%, #51B1E1 100%) !important;
}

.service-card-icon-5 {
  background: linear-gradient(135deg, #51B1E1 0%, #1F3BB3 100%) !important;
}

.ecommerce-services-cards-row > div:nth-child(1) .ecommerce-service-card {
  border-top-color: #1F3BB3;
}

.ecommerce-services-cards-row > div:nth-child(2) .ecommerce-service-card {
  border-top-color: #05C3FB;
}

.ecommerce-services-cards-row > div:nth-child(3) .ecommerce-service-card {
  border-top-color: #34B1AA;
}

.ecommerce-services-cards-row > div:nth-child(4) .ecommerce-service-card {
  border-top-color: #4DA761;
}

.ecommerce-services-cards-row > div:nth-child(5) .ecommerce-service-card {
  border-top-color: #51B1E1;
}

.service-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1F3BB3;
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-card-description {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 48px;
}

.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.service-card-features li {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.service-card-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #1F3BB3;
  font-size: 14px;
}

/* Ecommerce Critical Section Styles */
.ecommerce-critical-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.critical-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.critical-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(31, 59, 179, 0.2);
}

.critical-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.critical-image-wrapper:hover img {
  transform: scale(1.05);
}

.critical-content {
  padding-left: 20px;
}

.critical-points {
  margin-top: 30px;
}

.critical-point {
  margin-bottom: 25px;
  padding-left: 35px;
  position: relative;
  transition: transform 0.3s ease;
}

.critical-point:hover {
  transform: translateX(5px);
}

.critical-point .point-icon {
  position: absolute;
  left: 0;
  top: 5px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #1F3BB3 0%, #05C3FB 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(31, 59, 179, 0.3);
}

.critical-point .point-icon i {
  color: white;
  font-size: 12px;
}

.critical-point p {
  font-size: 1.1rem;
  color: #495057;
  line-height: 1.8;
  margin: 0;
}

/* Process Section Styles */
.process-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.process-cards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.process-cards-row > div {
  flex: 0 0 calc(20% - 15px);
  max-width: calc(20% - 15px);
}

@media (max-width: 1199px) {
  .process-cards-row > div {
    flex: 0 0 calc(33.333% - 15px);
    max-width: calc(33.333% - 15px);
  }
}

@media (max-width: 991px) {
  .process-cards-row > div {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 767px) {
  .process-cards-row > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.process-card {
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #1F3BB3;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(31, 59, 179, 0.2);
}

.process-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #1F3BB3 0%, #05C3FB 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon i {
  font-size: 32px;
  color: white;
}

.process-icon-2 {
  background: linear-gradient(135deg, #05C3FB 0%, #1F3BB3 100%) !important;
}

.process-icon-3 {
  background: linear-gradient(135deg, #34B1AA 0%, #05C3FB 100%) !important;
}

.process-icon-4 {
  background: linear-gradient(135deg, #4DA761 0%, #34B1AA 100%) !important;
}

.process-icon-5 {
  background: linear-gradient(135deg, #51B1E1 0%, #1F3BB3 100%) !important;
}

.process-cards-row > div:nth-child(1) .process-card {
  border-top-color: #1F3BB3;
}

.process-cards-row > div:nth-child(2) .process-card {
  border-top-color: #05C3FB;
}

.process-cards-row > div:nth-child(3) .process-card {
  border-top-color: #34B1AA;
}

.process-cards-row > div:nth-child(4) .process-card {
  border-top-color: #4DA761;
}

.process-cards-row > div:nth-child(5) .process-card {
  border-top-color: #51B1E1;
}

.process-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1F3BB3;
  margin-bottom: 15px;
}

.process-description {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .comparison-table-section {
    padding: 50px 0;
  }
  
  .comparison-table-wrapper {
    border-radius: 5px;
  }
  
  .comparison-table {
    min-width: 600px;
    font-size: 0.9rem;
  }
  
  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 12px 10px;
  }
  
  .comparison-tip {
    padding: 15px;
  }
  
  .comparison-tip p {
    font-size: 0.9rem;
  }
  
  /* Process Section - Mobile Compact */
  .process-section {
    padding: 40px 0 !important;
  }
  
  .process-section .section-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .process-section .section-subtitle {
    font-size: 0.9rem !important;
    margin-top: 0.75rem !important;
    margin-bottom: 1rem !important;
  }
  
  .process-section .row.mb-5 {
    margin-bottom: 1.5rem !important;
  }
  
  .process-card-slide-item {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    padding: 0 10px !important;
  }
  
  .process-cards-slider-wrapper {
    padding: 0 20px !important;
  }
  
  .process-card {
    padding: 20px 15px !important;
    border-radius: 8px !important;
    min-height: 220px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }
  
  .process-icon {
    width: 55px !important;
    height: 55px !important;
    margin-bottom: 15px !important;
  }
  
  .process-icon i {
    font-size: 24px !important;
  }
  
  .process-title {
    font-size: 0.95rem !important;
    margin-bottom: 10px !important;
    line-height: 1.25 !important;
  }
  
  .process-description {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }
  
  .process-cards-slider-mobile {
    margin-top: 1.5rem !important;
  }
  
  .process-cards-slider-container {
    padding: 0 10px !important;
  }
  
  .process-cards-slider-dots {
    margin-top: 1rem !important;
    gap: 6px !important;
  }
  
  .process-card-dot {
    width: 8px !important;
    height: 8px !important;
  }
  
  .process-card-dot.active {
    width: 20px !important;
  }
  
  .ecommerce-critical-section {
    padding: 40px 0 !important;
  }
  
  .ecommerce-critical-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .ecommerce-critical-section .row {
    margin: 0;
  }
  
  .ecommerce-critical-section .col-lg-6 {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 1.5rem;
  }
  
  .ecommerce-critical-section .section-title {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.3;
  }
  
  .critical-content {
    padding-left: 0 !important;
    margin-top: 1.25rem !important;
  }
  
  .critical-points {
    margin-top: 1rem !important;
  }
  
  .critical-point {
    padding-left: 28px !important;
    margin-bottom: 1rem !important;
  }
  
  .critical-point .point-icon {
    width: 18px !important;
    height: 18px !important;
    top: 3px !important;
  }
  
  .critical-point .point-icon i {
    font-size: 10px !important;
  }
  
  .critical-point p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }
  
  .critical-image-wrapper {
    margin-bottom: 1.5rem !important;
  }
}

@media (max-width: 576px) {
  .ecommerce-critical-section {
    padding: 30px 0 !important;
  }
  
  .ecommerce-critical-section .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .ecommerce-critical-section .col-lg-6 {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 1rem;
  }
  
  .ecommerce-critical-section .section-title {
    font-size: 1.2rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.25;
  }
  
  .critical-content {
    margin-top: 1rem !important;
  }
  
  .critical-points {
    margin-top: 0.875rem !important;
  }
  
  .critical-point {
    padding-left: 25px !important;
    margin-bottom: 0.875rem !important;
  }
  
  .critical-point .point-icon {
    width: 16px !important;
    height: 16px !important;
    top: 2px !important;
  }
  
  .critical-point .point-icon i {
    font-size: 9px !important;
  }
  
  .critical-point p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }
  
  .critical-image-wrapper {
    margin-bottom: 1rem !important;
  }
}

@media (max-width: 480px) {
  .ecommerce-critical-section {
    padding: 25px 0 !important;
  }
  
  .ecommerce-critical-section .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  
  .ecommerce-critical-section .col-lg-6 {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 0.875rem;
  }
  
  .ecommerce-critical-section .section-title {
    font-size: 1.05rem !important;
    margin-bottom: 0.625rem !important;
    line-height: 1.2;
  }
  
  .critical-content {
    margin-top: 0.875rem !important;
  }
  
  .critical-points {
    margin-top: 0.75rem !important;
  }
  
  .critical-point {
    padding-left: 22px !important;
    margin-bottom: 0.75rem !important;
  }
  
  .critical-point .point-icon {
    width: 14px !important;
    height: 14px !important;
    top: 1px !important;
  }
  
  .critical-point .point-icon i {
    font-size: 8px !important;
  }
  
  .critical-point p {
    font-size: 0.8rem !important;
    line-height: 1.35 !important;
  }
  
  .critical-image-wrapper {
    margin-bottom: 0.875rem !important;
  }
}

@media (max-width: 375px) {
  .ecommerce-critical-section {
    padding: 20px 0 !important;
  }
  
  .ecommerce-critical-section .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  
  .ecommerce-critical-section .col-lg-6 {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 0.75rem;
  }
  
  .ecommerce-critical-section .section-title {
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.15;
  }
  
  .critical-content {
    margin-top: 0.75rem !important;
  }
  
  .critical-points {
    margin-top: 0.625rem !important;
  }
  
  .critical-point {
    padding-left: 20px !important;
    margin-bottom: 0.625rem !important;
  }
  
  .critical-point .point-icon {
    width: 12px !important;
    height: 12px !important;
    top: 1px !important;
  }
  
  .critical-point .point-icon i {
    font-size: 7px !important;
  }
  
  .critical-point p {
    font-size: 0.75rem !important;
    line-height: 1.3 !important;
  }
  
  .critical-image-wrapper {
    margin-bottom: 0.75rem !important;
  }
}

/* Ecommerce Services Cards Section - Mobile Compact */
@media (max-width: 991.98px) {
  .ecommerce-services-cards-section {
    padding: 40px 0 !important;
  }
  
  .ecommerce-services-cards-section .section-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .ecommerce-services-cards-section .section-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
  }
  
  .ecommerce-services-cards-row {
    margin-bottom: 1.5rem !important;
  }
  
  .ecommerce-service-card {
    padding: 20px 18px !important;
    margin-bottom: 20px !important;
    border-radius: 12px !important;
  }
  
  .service-card-icon {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 15px !important;
  }
  
  .service-card-icon i {
    font-size: 26px !important;
  }
  
  .service-card-title {
    font-size: 1.1rem !important;
    margin-bottom: 12px !important;
    line-height: 1.25 !important;
  }
  
  .service-card-description {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 15px !important;
    min-height: auto !important;
  }
  
  .service-card-features {
    margin-top: 0 !important;
  }
  
  .service-card-features li {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
    margin-bottom: 8px !important;
    padding-left: 22px !important;
  }
  
  .service-card-features li::before {
    font-size: 12px !important;
    left: 0 !important;
  }
  
  .ecommerce-services-slider-mobile {
    margin-top: 1.5rem !important;
  }
  
  .ecommerce-services-slider-container {
    padding: 0 10px !important;
  }
  
  .ecommerce-services-slider-dots {
    margin-top: 1rem !important;
    gap: 6px !important;
  }
  
  .ecommerce-service-dot {
    width: 8px !important;
    height: 8px !important;
  }
  
  .ecommerce-service-dot.active {
    width: 20px !important;
  }
}

@media (max-width: 768px) {
  .ecommerce-services-cards-section {
    padding: 35px 0 !important;
  }
  
  .ecommerce-services-cards-section .section-title {
    font-size: 1.35rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .ecommerce-services-cards-section .section-subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 0.875rem !important;
  }
  
  .ecommerce-services-cards-row {
    margin-bottom: 1.25rem !important;
  }
  
  .ecommerce-service-card {
    padding: 18px 16px !important;
    margin-bottom: 18px !important;
    border-radius: 10px !important;
  }
  
  .service-card-icon {
    width: 55px !important;
    height: 55px !important;
    margin-bottom: 12px !important;
  }
  
  .service-card-icon i {
    font-size: 24px !important;
  }
  
  .service-card-title {
    font-size: 1rem !important;
    margin-bottom: 10px !important;
    line-height: 1.2 !important;
  }
  
  .service-card-description {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
  }
  
  .service-card-features li {
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
    margin-bottom: 7px !important;
    padding-left: 20px !important;
  }
  
  .service-card-features li::before {
    font-size: 11px !important;
  }
  
  .ecommerce-services-slider-mobile {
    margin-top: 1.25rem !important;
  }
  
  .ecommerce-services-slider-container {
    padding: 0 8px !important;
  }
  
  .ecommerce-services-slider-dots {
    margin-top: 0.875rem !important;
    gap: 5px !important;
  }
  
  .ecommerce-service-dot {
    width: 7px !important;
    height: 7px !important;
  }
  
  .ecommerce-service-dot.active {
    width: 18px !important;
  }
}

@media (max-width: 576px) {
  .ecommerce-services-cards-section {
    padding: 30px 0 !important;
  }
  
  .ecommerce-services-cards-section .section-title {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .ecommerce-services-cards-section .section-subtitle {
    font-size: 0.8rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .ecommerce-services-cards-row {
    margin-bottom: 1rem !important;
  }
  
  .ecommerce-service-card {
    padding: 16px 14px !important;
    margin-bottom: 16px !important;
    border-radius: 8px !important;
  }
  
  .service-card-icon {
    width: 50px !important;
    height: 50px !important;
    margin-bottom: 10px !important;
  }
  
  .service-card-icon i {
    font-size: 22px !important;
  }
  
  .service-card-title {
    font-size: 0.95rem !important;
    margin-bottom: 8px !important;
    line-height: 1.15 !important;
  }
  
  .service-card-description {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
  }
  
  .service-card-features li {
    font-size: 0.75rem !important;
    line-height: 1.45 !important;
    margin-bottom: 6px !important;
    padding-left: 18px !important;
  }
  
  .service-card-features li::before {
    font-size: 10px !important;
  }
  
  .ecommerce-services-slider-mobile {
    margin-top: 1rem !important;
  }
  
  .ecommerce-services-slider-container {
    padding: 0 5px !important;
  }
  
  .ecommerce-services-slider-dots {
    margin-top: 0.75rem !important;
    gap: 4px !important;
  }
  
  .ecommerce-service-dot {
    width: 6px !important;
    height: 6px !important;
  }
  
  .ecommerce-service-dot.active {
    width: 16px !important;
  }
}

@media (max-width: 480px) {
  .ecommerce-services-cards-section {
    padding: 25px 0 !important;
  }
  
  .ecommerce-services-cards-section .section-title {
    font-size: 1.05rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  .ecommerce-services-cards-section .section-subtitle {
    font-size: 0.75rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .ecommerce-services-cards-row {
    margin-bottom: 0.875rem !important;
  }
  
  .ecommerce-service-card {
    padding: 14px 12px !important;
    margin-bottom: 14px !important;
    border-radius: 8px !important;
  }
  
  .service-card-icon {
    width: 45px !important;
    height: 45px !important;
    margin-bottom: 8px !important;
  }
  
  .service-card-icon i {
    font-size: 20px !important;
  }
  
  .service-card-title {
    font-size: 0.9rem !important;
    margin-bottom: 7px !important;
    line-height: 1.1 !important;
  }
  
  .service-card-description {
    font-size: 0.75rem !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
  }
  
  .service-card-features li {
    font-size: 0.7rem !important;
    line-height: 1.4 !important;
    margin-bottom: 5px !important;
    padding-left: 16px !important;
  }
  
  .service-card-features li::before {
    font-size: 9px !important;
  }
  
  .ecommerce-services-slider-mobile {
    margin-top: 0.875rem !important;
  }
  
  .ecommerce-services-slider-container {
    padding: 0 4px !important;
  }
  
  .ecommerce-services-slider-dots {
    margin-top: 0.65rem !important;
    gap: 3px !important;
  }
  
  .ecommerce-service-dot {
    width: 5px !important;
    height: 5px !important;
  }
  
  .ecommerce-service-dot.active {
    width: 14px !important;
  }
}

@media (max-width: 375px) {
  .ecommerce-services-cards-section {
    padding: 20px 0 !important;
  }
  
  .ecommerce-services-cards-section .section-title {
    font-size: 1rem !important;
    margin-bottom: 0.35rem !important;
  }
  
  .ecommerce-services-cards-section .section-subtitle {
    font-size: 0.7rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .ecommerce-services-cards-row {
    margin-bottom: 0.75rem !important;
  }
  
  .ecommerce-service-card {
    padding: 12px 10px !important;
    margin-bottom: 12px !important;
    border-radius: 6px !important;
  }
  
  .service-card-icon {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 7px !important;
  }
  
  .service-card-icon i {
    font-size: 18px !important;
  }
  
  .service-card-title {
    font-size: 0.85rem !important;
    margin-bottom: 6px !important;
    line-height: 1.05 !important;
  }
  
  .service-card-description {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
    margin-bottom: 7px !important;
  }
  
  .service-card-features li {
    font-size: 0.65rem !important;
    line-height: 1.35 !important;
    margin-bottom: 4px !important;
    padding-left: 14px !important;
  }
  
  .service-card-features li::before {
    font-size: 8px !important;
  }
  
  .ecommerce-services-slider-mobile {
    margin-top: 0.75rem !important;
  }
  
  .ecommerce-services-slider-container {
    padding: 0 3px !important;
  }
  
  .ecommerce-services-slider-dots {
    margin-top: 0.55rem !important;
    gap: 3px !important;
  }
  
  .ecommerce-service-dot {
    width: 4px !important;
    height: 4px !important;
  }
  
  .ecommerce-service-dot.active {
    width: 12px !important;
  }
}

/* Program Stats - Mobile Responsive - Same Row & White Text */
@media (max-width: 991.98px) {
  .ecommerce-program-details .program-stats {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap !important;
    width: 100%;
  }
  
  .ecommerce-program-details .stat-item {
    flex: 1 1 0 !important;
    min-width: 0;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .ecommerce-program-details .stat-number,
  .ecommerce-program-details .stat-label {
    color: white !important;
  }
  
  .ecommerce-program-details .stat-icon {
    color: white !important;
  }
  
  .ecommerce-program-details .stat-icon i {
    color: white !important;
  }
}

@media (max-width: 768px) {
  .ecommerce-program-details .program-stats {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap !important;
    width: 100%;
  }
  
  .ecommerce-program-details .stat-item {
    flex: 1 1 0 !important;
    min-width: 0;
    max-width: none;
    padding: 8px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .ecommerce-program-details .stat-icon {
    width: 40px !important;
    height: 40px !important;
    flex-shrink: 0;
  }
  
  .ecommerce-program-details .stat-icon i {
    font-size: 1rem !important;
    color: white !important;
  }
  
  .ecommerce-program-details .stat-number {
    font-size: 14px !important;
    color: white !important;
  }
  
  .ecommerce-program-details .stat-label {
    font-size: 0.75rem !important;
    color: white !important;
  }
}

@media (max-width: 576px) {
  .ecommerce-program-details .program-stats {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap !important;
    width: 100%;
  }
  
  .ecommerce-program-details .stat-item {
    flex: 1 1 0 !important;
    min-width: 0;
    max-width: none;
    padding: 6px 3px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .ecommerce-program-details .stat-icon {
    width: 35px !important;
    height: 35px !important;
    flex-shrink: 0;
  }
  
  .ecommerce-program-details .stat-icon i {
    font-size: 0.9rem !important;
    color: white !important;
  }
  
  .ecommerce-program-details .stat-number {
    font-size: 13px !important;
    color: white !important;
  }
  
  .ecommerce-program-details .stat-label {
    font-size: 0.7rem !important;
    color: white !important;
  }
}

@media (max-width: 480px) {
  .ecommerce-program-details .program-stats {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap !important;
    width: 100%;
    margin-left: 0px;
  }
  
  .ecommerce-program-details .stat-item {
    flex: 1 1 0 !important;
    min-width: 0;
    max-width: none;
    padding: 5px 2px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .ecommerce-program-details .stat-icon {
    width: 32px !important;
    height: 32px !important;
    flex-shrink: 0;
  }
  
  .ecommerce-program-details .stat-icon i {
    font-size: 0.85rem !important;
    color: white !important;
  }
  
  .ecommerce-program-details .stat-number {
    font-size: 12px !important;
    color: white !important;
  }
  
  .ecommerce-program-details .stat-label {
    font-size: 0.65rem !important;
    color: white !important;
  }
}

@media (max-width: 375px) {
  .ecommerce-program-details .program-stats {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center;
    gap: 3px;
    flex-wrap: nowrap !important;
    width: 100%;
  }
  
  .ecommerce-program-details .stat-item {
    flex: 1 1 0 !important;
    min-width: 0;
    max-width: none;
    padding: 4px 2px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .ecommerce-program-details .stat-icon {
    width: 30px !important;
    height: 30px !important;
    flex-shrink: 0;
  }
  
  .ecommerce-program-details .stat-icon i {
    font-size: 0.8rem !important;
    color: white !important;
  }
  
  .ecommerce-program-details .stat-number {
    font-size: 11px !important;
    color: white !important;
  }
  
  .ecommerce-program-details .stat-label {
    font-size: 0.6rem !important;
    color: white !important;
  }
}

/* CTA Buttons - Mobile Responsive - Same Row */
@media (max-width: 991.98px) {
  .ecommerce-program-details .cta-buttons {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap !important;
    width: 100%;
  }
  
  .ecommerce-program-details .cta-buttons .btn {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .ecommerce-program-details .cta-buttons {
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap !important;
    width: 100%;
  }
  
  .ecommerce-program-details .cta-buttons .btn {
    flex: 1 1 0 !important;
    width: auto;
    max-width: none;
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
    min-width: 0;
  }
}

@media (max-width: 576px) {
  .ecommerce-program-details .cta-buttons {
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap !important;
    width: 100%;
  }
  
  .ecommerce-program-details .cta-buttons .btn {
    flex: 1 1 0 !important;
    width: auto;
    max-width: none;
    padding: 11px 16px !important;
    font-size: 0.9rem !important;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .ecommerce-program-details .cta-buttons {
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap !important;
    width: 100%;
  }
  
  .ecommerce-program-details .cta-buttons .btn {
    flex: 1 1 0 !important;
    width: auto;
    max-width: none;
    padding: 10px 14px !important;
    font-size: 0.75rem !important;
    min-width: 0;
  }
  
  .ecommerce-program-details .cta-buttons .btn i {
    font-size: 0.8rem;
  }
}

@media (max-width: 375px) {
  .ecommerce-program-details .cta-buttons {
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap !important;
    width: 100%;
  }
  
  .ecommerce-program-details .cta-buttons .btn {
    flex: 1 1 0 !important;
    width: auto;
    max-width: none;
    padding: 9px 12px !important;
    font-size: 0.8rem !important;
    min-width: 0;
  }
  
  .ecommerce-program-details .cta-buttons .btn i {
    font-size: 0.75rem;
    margin-right: 4px !important;
  }
}

/* E-commerce Form Container - Mobile Compact */
@media (max-width: 991.98px) {
  .ecommerce-form-container {
    padding: 1.5rem 1rem !important;
    margin-top: 2rem;
  }
  
  .ecommerce-form-container .form-header {
    margin-bottom: 1.25rem !important;
  }
  
  .ecommerce-form-container .form-header h3 {
    font-size: 1.35rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .ecommerce-form-container .form-header p {
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
  }
  
  .ecommerce-form .row {
    margin-left: -8px !important;
    margin-right: -8px !important;
  }
  
  .ecommerce-form .col-md-6 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  
  .ecommerce-form .mb-3 {
    margin-bottom: 1rem !important;
  }
  
  .ecommerce-form .form-label {
    font-size: 0.85rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  .ecommerce-form .form-control,
  .ecommerce-form .form-select {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
  }
  
  .ecommerce-form .btn {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.95rem !important;
    margin-top: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .ecommerce-form-container {
    padding: 1.25rem 0.9rem !important;
    margin-top: 1.5rem;
  }
  
  .ecommerce-form-container .form-header {
    margin-bottom: 1rem !important;
  }
  
  .ecommerce-form-container .form-header h3 {
    font-size: 1.25rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  .ecommerce-form-container .form-header p {
    font-size: 0.85rem !important;
  }
  
  .ecommerce-form .row {
    margin-left: -6px !important;
    margin-right: -6px !important;
  }
  
  .ecommerce-form .col-md-6 {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
  
  .ecommerce-form .mb-3 {
    margin-bottom: 0.875rem !important;
  }
  
  .ecommerce-form .form-label {
    font-size: 0.8rem !important;
    margin-bottom: 0.35rem !important;
  }
  
  .ecommerce-form .form-control,
  .ecommerce-form .form-select {
    padding: 0.45rem 0.7rem !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }
  
  .ecommerce-form .btn {
    padding: 0.7rem 1.25rem !important;
    font-size: 0.9rem !important;
    margin-top: 0.4rem !important;
  }
}

@media (max-width: 576px) {
  .ecommerce-form-container {
    padding: 1rem 0.75rem !important;
    margin-top: 1.25rem;
  }
  
  .ecommerce-form-container .form-header {
    margin-bottom: 0.875rem !important;
  }
  
  .ecommerce-form-container .form-header h3 {
    font-size: 1.15rem !important;
    margin-bottom: 0.35rem !important;
  }
  
  .ecommerce-form-container .form-header p {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }
  
  .ecommerce-form .row {
    margin-left: -5px !important;
    margin-right: -5px !important;
  }
  
  .ecommerce-form .col-md-6 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  
  .ecommerce-form .mb-3 {
    margin-bottom: 0.75rem !important;
  }
  
  .ecommerce-form .form-label {
    font-size: 0.75rem !important;
    margin-bottom: 0.3rem !important;
  }
  
  .ecommerce-form .form-control,
  .ecommerce-form .form-select {
    padding: 0.4rem 0.6rem !important;
    font-size: 0.8rem !important;
    line-height: 1.35 !important;
  }
  
  .ecommerce-form .btn {
    padding: 0.65rem 1rem !important;
    font-size: 0.85rem !important;
    margin-top: 0.35rem !important;
  }
  
  .ecommerce-form .btn i {
    font-size: 0.8rem !important;
    margin-right: 0.4rem !important;
  }
}

@media (max-width: 480px) {
  .ecommerce-form-container {
    padding: 0.875rem 0.6rem !important;
    margin-top: 1rem;
  }
  
  .ecommerce-form-container .form-header {
    margin-bottom: 0.75rem !important;
  }
  
  .ecommerce-form-container .form-header h3 {
    font-size: 1.05rem !important;
    margin-bottom: 0.3rem !important;
  }
  
  .ecommerce-form-container .form-header p {
    font-size: 0.75rem !important;
    line-height: 1.35 !important;
  }
  
  .ecommerce-form .row {
    margin-left: -4px !important;
    margin-right: -4px !important;
  }
  
  .ecommerce-form .col-md-6 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  
  .ecommerce-form .mb-3 {
    margin-bottom: 0.65rem !important;
  }
  
  .ecommerce-form .form-label {
    font-size: 0.7rem !important;
    margin-bottom: 0.25rem !important;
  }
  
  .ecommerce-form .form-control,
  .ecommerce-form .form-select {
    padding: 0.35rem 0.5rem !important;
    font-size: 0.75rem !important;
    line-height: 1.3 !important;
  }
  
  .ecommerce-form .btn {
    padding: 0.6rem 0.9rem !important;
    font-size: 0.8rem !important;
    margin-top: 0.3rem !important;
  }
  
  .ecommerce-form .btn i {
    font-size: 0.75rem !important;
    margin-right: 0.35rem !important;
  }
}

@media (max-width: 375px) {
  .ecommerce-form-container {
    padding: 0.75rem 0.5rem !important;
    margin-top: 0.875rem;
  }
  
  .ecommerce-form-container .form-header {
    margin-bottom: 0.65rem !important;
  }
  
  .ecommerce-form-container .form-header h3 {
    font-size: 1rem !important;
    margin-bottom: 0.25rem !important;
  }
  
  .ecommerce-form-container .form-header p {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
  }
  
  .ecommerce-form .row {
    margin-left: -3px !important;
    margin-right: -3px !important;
  }
  
  .ecommerce-form .col-md-6 {
    padding-left: 3px !important;
    padding-right: 3px !important;
  }
  
  .ecommerce-form .mb-3 {
    margin-bottom: 0.55rem !important;
  }
  
  .ecommerce-form .form-label {
    font-size: 0.65rem !important;
    margin-bottom: 0.2rem !important;
  }
  
  .ecommerce-form .form-control,
  .ecommerce-form .form-select {
    padding: 0.3rem 0.45rem !important;
    font-size: 0.7rem !important;
    line-height: 1.25 !important;
  }
  
  .ecommerce-form .btn {
    padding: 0.55rem 0.8rem !important;
    font-size: 0.75rem !important;
    margin-top: 0.25rem !important;
  }
  
  .ecommerce-form .btn i {
    font-size: 0.7rem !important;
    margin-right: 0.3rem !important;
  }
}

/* Course Tabs - Mobile Responsive - 2 Tabs per Row & Reduced Size */
@media (max-width: 991.98px) {
  .course-highlights-section .col-lg-3 {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .course-highlights-section .col-lg-9 {
    width: 100%;
  }
  
  .course-tabs {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.75rem !important;
  }
  
  .course-tabs .tab-item {
    flex: 0 0 calc(50% - 0.375rem) !important;
    max-width: calc(50% - 0.375rem) !important;
    min-width: 0 !important;
    padding: 0.75rem 0.6rem !important;
  }
  
  .course-tabs .tab-content h4 {
    font-size: 0.9rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
  }
  
  .course-tabs .tab-content p {
    font-size: 0.75rem !important;
    margin-top: 0.25rem !important;
  }
}

@media (max-width: 768px) {
  .course-tabs {
    justify-content: center !important;
    gap: 0.6rem !important;
  }
  
  .course-tabs .tab-item {
    flex: 0 0 calc(50% - 0.3rem) !important;
    max-width: calc(50% - 0.3rem) !important;
    padding: 0.65rem 0.5rem !important;
  }
  
  .course-tabs .tab-content h4 {
    font-size: 0.85rem !important;
    line-height: 1.25 !important;
  }
  
  .course-tabs .tab-content p {
    font-size: 0.7rem !important;
    margin-top: 0.2rem !important;
  }
}

@media (max-width: 576px) {
  .course-tabs {
    justify-content: center !important;
    gap: 0.5rem !important;
  }
  
  .course-tabs .tab-item {
    flex: 0 0 calc(50% - 0.25rem) !important;
    max-width: calc(50% - 0.25rem) !important;
    padding: 0.55rem 0.45rem !important;
  }
  
  .course-tabs .tab-content h4 {
    font-size: 0.8rem !important;
    line-height: 1.2 !important;
  }
  
  .course-tabs .tab-content p {
    font-size: 0.65rem !important;
    margin-top: 0.15rem !important;
  }
}

@media (max-width: 480px) {
  .course-tabs {
    justify-content: center !important;
    gap: 0.4rem !important;
    margin-left: -4px;
  }
  
  .course-tabs .tab-item {
    flex: 0 0 calc(50% - 0.2rem) !important;
    max-width: calc(50% - 0.2rem) !important;
    padding: 0.5rem 0.4rem !important;
  }
  
  .course-tabs .tab-content h4 {
    font-size: 0.75rem !important;
    line-height: 1.15 !important;
  }
  
  .course-tabs .tab-content p {
    font-size: 0.6rem !important;
    margin-top: 0.1rem !important;
  }
}

@media (max-width: 375px) {
  .course-tabs {
    justify-content: center !important;
    gap: 0.35rem !important;
  }
  
  .course-tabs .tab-item {
    flex: 0 0 calc(50% - 0.175rem) !important;
    max-width: calc(50% - 0.175rem) !important;
    padding: 0.45rem 0.35rem !important;
  }
  
  .course-tabs .tab-content h4 {
    font-size: 0.7rem !important;
    line-height: 1.1 !important;
  }
  
  .course-tabs .tab-content p {
    font-size: 0.55rem !important;
    margin-top: 0.1rem !important;
  }
}

/* E-commerce Services Cards Mobile Slider Styles */
.ecommerce-services-grid-desktop {
  display: flex;
}

.ecommerce-services-slider-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .ecommerce-services-grid-desktop {
    display: none !important;
  }
  
  .ecommerce-services-slider-mobile {
    display: block;
    position: relative;
    margin-top: 2rem;
  }
  
  .ecommerce-services-slider-container {
    position: relative;
    padding: 0 15px;
  }
  
  .ecommerce-services-slider-wrapper {
    overflow: hidden;
    position: relative;
  }
  
  .ecommerce-services-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
  }
  
  .ecommerce-service-slide-item {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
  }
  
  .ecommerce-services-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  
  .ecommerce-service-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .ecommerce-service-dot.active {
    background: #1F3BB3;
    width: 30px;
    border-radius: 5px;
  }
  
  .ecommerce-services-slider-mobile .ecommerce-service-card {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .ecommerce-services-slider-container {
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
  .ecommerce-services-slider-container {
    padding: 0 5px;
  }
}

/* Process Cards Mobile Slider Styles */
.process-cards-grid-desktop {
  display: flex;
}

.process-cards-slider-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .process-cards-grid-desktop {
    display: none !important;
  }
  
  .process-cards-slider-mobile {
    display: block;
    position: relative;
    margin-top: 2rem;
  }
  
  .process-cards-slider-container {
    position: relative;
    padding: 0 15px;
  }
  
  .process-cards-slider-wrapper {
    overflow: hidden;
    position: relative;
  }
  
  .process-cards-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
  }
  
  .process-card-slide-item {
    flex: 0 0 85%;
    max-width: 85%;
    min-width: 0;
    padding: 0 10px;
  }
  
  .process-cards-slider-wrapper {
    padding: 0 20px;
  }
  
  .process-cards-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  
  .process-card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .process-card-dot.active {
    background: #1F3BB3;
    width: 30px;
    border-radius: 5px;
  }
  
  .process-cards-slider-mobile .process-card {
    margin-bottom: 0;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 35px 0 !important;
  }
  
  .process-section .section-title {
    font-size: 1.35rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .process-section .section-subtitle {
    font-size: 0.85rem !important;
    margin-top: 0.625rem !important;
    margin-bottom: 0.875rem !important;
  }
  
  .process-section .row.mb-5 {
    margin-bottom: 1.25rem !important;
  }
  
  .process-card-slide-item {
    flex: 0 0 80% !important;
    max-width: 80% !important;
    padding: 0 8px !important;
  }
  
  .process-cards-slider-wrapper {
    padding: 0 15px !important;
  }
  
  .process-card {
    padding: 18px 12px !important;
    border-radius: 8px !important;
    min-height: 200px !important;
  }
  
  .process-icon {
    width: 50px !important;
    height: 50px !important;
    margin-bottom: 12px !important;
  }
  
  .process-icon i {
    font-size: 22px !important;
  }
  
  .process-title {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
  }
  
  .process-description {
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
  }
  
  .process-cards-slider-mobile {
    margin-top: 1.25rem !important;
  }
  
  .process-cards-slider-container {
    padding: 0 8px !important;
  }
  
  .process-cards-slider-dots {
    margin-top: 0.875rem !important;
    gap: 5px !important;
  }
  
  .process-card-dot {
    width: 7px !important;
    height: 7px !important;
  }
  
  .process-card-dot.active {
    width: 18px !important;
  }
}

@media (max-width: 576px) {
  .process-section {
    padding: 30px 0 !important;
  }
  
  .process-section .section-title {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .process-section .section-subtitle {
    font-size: 0.8rem !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .process-section .row.mb-5 {
    margin-bottom: 1rem !important;
  }
  
  .process-card-slide-item {
    flex: 0 0 75% !important;
    max-width: 75% !important;
    padding: 0 6px !important;
  }
  
  .process-cards-slider-wrapper {
    padding: 0 12px !important;
  }
  
  .process-card {
    padding: 16px 10px !important;
    border-radius: 6px !important;
    min-height: 180px !important;
  }
  
  .process-icon {
    width: 45px !important;
    height: 45px !important;
    margin-bottom: 10px !important;
  }
  
  .process-icon i {
    font-size: 20px !important;
  }
  
  .process-title {
    font-size: 0.85rem !important;
    margin-bottom: 7px !important;
    line-height: 1.15 !important;
  }
  
  .process-description {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
  }
  
  .process-cards-slider-mobile {
    margin-top: 1rem !important;
  }
  
  .process-cards-slider-container {
    padding: 0 5px !important;
  }
  
  .process-cards-slider-dots {
    margin-top: 0.75rem !important;
    gap: 4px !important;
  }
  
  .process-card-dot {
    width: 6px !important;
    height: 6px !important;
  }
  
  .process-card-dot.active {
    width: 16px !important;
  }
}

@media (max-width: 480px) {
  .process-section {
    padding: 25px 0 !important;
  }
  
  .process-section .section-title {
    font-size: 1.05rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  .process-section .section-subtitle {
    font-size: 0.75rem !important;
    margin-top: 0.4rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .process-section .row.mb-5 {
    margin-bottom: 0.875rem !important;
  }
  
  .process-card-slide-item {
    flex: 0 0 70% !important;
    max-width: 70% !important;
    padding: 0 5px !important;
  }
  
  .process-cards-slider-wrapper {
    padding: 0 10px !important;
  }
  
  .process-card {
    padding: 14px 8px !important;
    border-radius: 6px !important;
    min-height: 170px !important;
  }
  
  .process-icon {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 8px !important;
  }
  
  .process-icon i {
    font-size: 18px !important;
  }
  
  .process-title {
    font-size: 0.8rem !important;
    margin-bottom: 6px !important;
    line-height: 1.1 !important;
  }
  
  .process-description {
    font-size: 0.7rem !important;
    line-height: 1.35 !important;
  }
  
  .process-cards-slider-mobile {
    margin-top: 0.875rem !important;
  }
  
  .process-cards-slider-container {
    padding: 0 4px !important;
  }
  
  .process-cards-slider-dots {
    margin-top: 0.65rem !important;
    gap: 3px !important;
  }
  
  .process-card-dot {
    width: 5px !important;
    height: 5px !important;
  }
  
  .process-card-dot.active {
    width: 14px !important;
  }
}

@media (max-width: 375px) {
  .process-section {
    padding: 20px 0 !important;
  }
  
  .process-section .section-title {
    font-size: 1rem !important;
    margin-bottom: 0.35rem !important;
  }
  
  .process-section .section-subtitle {
    font-size: 0.7rem !important;
    margin-top: 0.35rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .process-section .row.mb-5 {
    margin-bottom: 0.75rem !important;
  }
  
  .process-card-slide-item {
    flex: 0 0 65% !important;
    max-width: 65% !important;
    padding: 0 4px !important;
  }
  
  .process-cards-slider-wrapper {
    padding: 0 8px !important;
  }
  
  .process-card {
    padding: 12px 7px !important;
    border-radius: 5px !important;
    min-height: 160px !important;
  }
  
  .process-icon {
    width: 35px !important;
    height: 35px !important;
    margin-bottom: 7px !important;
  }
  
  .process-icon i {
    font-size: 16px !important;
  }
  
  .process-title {
    font-size: 0.75rem !important;
    margin-bottom: 5px !important;
    line-height: 1.05 !important;
  }
  
  .process-description {
    font-size: 0.65rem !important;
    line-height: 1.3 !important;
  }
  
  .process-cards-slider-mobile {
    margin-top: 0.75rem !important;
  }
  
  .process-cards-slider-container {
    padding: 0 3px !important;
  }
  
  .process-cards-slider-dots {
    margin-top: 0.55rem !important;
    gap: 3px !important;
  }
  
  .process-card-dot {
    width: 4px !important;
    height: 4px !important;
  }
  
  .process-card-dot.active {
    width: 12px !important;
  }
}

/* Contact Form Section - Mobile Compact */
@media (max-width: 991.98px) {
  .contact-form-section {
    padding: 40px 0 !important;
  }
  
  .contact-form-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .contact-form-section .row {
    margin: 0;
  }
  
  .contact-form-section .col-lg-6 {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 1.5rem;
  }
  
  .content-points .section-title {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.3;
  }
  
  .points-list {
    margin-top: 1rem !important;
  }
  
  .point-item {
    margin-bottom: 1rem !important;
    padding-left: 35px !important;
  }
  
  .point-item .point-icon {
    width: 30px !important;
    height: 30px !important;
    font-size: 14px !important;
  }
  
  .point-item .point-content h4 {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
  }
  
  .contact-form-container {
    padding: 1.25rem 1rem !important;
    margin-top: 1.5rem;
  }
  
  .contact-form-container .form-header {
    margin-bottom: 1rem !important;
  }
  
  .contact-form-container .form-header h3 {
    font-size: 1.25rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  .contact-form-container .form-header p {
    font-size: 0.85rem !important;
  }
  
  .contact-form .row {
    margin-left: -6px !important;
    margin-right: -6px !important;
  }
  
  .contact-form .col-md-6 {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
  
  .contact-form .mb-3 {
    margin-bottom: 0.875rem !important;
  }
  
  .contact-form .form-label {
    font-size: 0.8rem !important;
    margin-bottom: 0.35rem !important;
  }
  
  .contact-form .form-control,
  .contact-form .form-select {
    padding: 0.45rem 0.7rem !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }
  
  .contact-form .btn {
    padding: 0.7rem 1.25rem !important;
    font-size: 0.9rem !important;
    margin-top: 0.4rem !important;
  }
  
  .captcha-container {
    margin-bottom: 0.5rem !important;
  }
  
  .captcha-display {
    font-size: 0.85rem !important;
    padding: 0.4rem 0.6rem !important;
  }
  
  .captcha-container .btn {
    padding: 0.4rem 0.6rem !important;
    font-size: 0.8rem !important;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 35px 0 !important;
  }
  
  .contact-form-section .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  
  .contact-form-section .col-lg-6 {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 1.25rem;
  }
  
  .content-points .section-title {
    font-size: 1.35rem !important;
    margin-bottom: 0.875rem !important;
  }
  
  .points-list {
    margin-top: 0.875rem !important;
  }
  
  .point-item {
    margin-bottom: 0.875rem !important;
    padding-left: 32px !important;
  }
  
  .point-item .point-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 13px !important;
  }
  
  .point-item .point-content h4 {
    font-size: 0.85rem !important;
    line-height: 1.35 !important;
  }
  
  .contact-form-container {
    padding: 1rem 0.9rem !important;
    margin-top: 1.25rem;
  }
  
  .contact-form-container .form-header {
    margin-bottom: 0.875rem !important;
  }
  
  .contact-form-container .form-header h3 {
    font-size: 1.15rem !important;
    margin-bottom: 0.35rem !important;
  }
  
  .contact-form-container .form-header p {
    font-size: 0.8rem !important;
  }
  
  .contact-form .row {
    margin-left: -5px !important;
    margin-right: -5px !important;
  }
  
  .contact-form .col-md-6 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  
  .contact-form .mb-3 {
    margin-bottom: 0.75rem !important;
  }
  
  .contact-form .form-label {
    font-size: 0.75rem !important;
    margin-bottom: 0.3rem !important;
  }
  
  .contact-form .form-control,
  .contact-form .form-select {
    padding: 0.4rem 0.6rem !important;
    font-size: 0.8rem !important;
    line-height: 1.35 !important;
  }
  
  .contact-form .btn {
    padding: 0.65rem 1rem !important;
    font-size: 0.85rem !important;
    margin-top: 0.35rem !important;
  }
  
  .captcha-display {
    font-size: 0.8rem !important;
    padding: 0.35rem 0.5rem !important;
  }
  
  .captcha-container .btn {
    padding: 0.35rem 0.5rem !important;
    font-size: 0.75rem !important;
  }
}

@media (max-width: 576px) {
  .contact-form-section {
    padding: 30px 0 !important;
  }
  
  .contact-form-section .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .contact-form-section .col-lg-6 {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 1rem;
  }
  
  .content-points .section-title {
    font-size: 1.2rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .points-list {
    margin-top: 0.75rem !important;
  }
  
  .point-item {
    margin-bottom: 0.75rem !important;
    padding-left: 28px !important;
  }
  
  .point-item .point-icon {
    width: 24px !important;
    height: 24px !important;
    font-size: 12px !important;
  }
  
  .point-item .point-content h4 {
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
  }
  
  .contact-form-container {
    padding: 0.875rem 0.75rem !important;
    margin-top: 1rem;
  }
  
  .contact-form-container .form-header {
    margin-bottom: 0.75rem !important;
  }
  
  .contact-form-container .form-header h3 {
    font-size: 1.05rem !important;
    margin-bottom: 0.3rem !important;
  }
  
  .contact-form-container .form-header p {
    font-size: 0.75rem !important;
  }
  
  .contact-form .row {
    margin-left: -4px !important;
    margin-right: -4px !important;
  }
  
  .contact-form .col-md-6 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  
  .contact-form .mb-3 {
    margin-bottom: 0.65rem !important;
  }
  
  .contact-form .form-label {
    font-size: 0.7rem !important;
    margin-bottom: 0.25rem !important;
  }
  
  .contact-form .form-control,
  .contact-form .form-select {
    padding: 0.35rem 0.5rem !important;
    font-size: 0.75rem !important;
    line-height: 1.3 !important;
  }
  
  .contact-form .btn {
    padding: 0.6rem 0.9rem !important;
    font-size: 0.8rem !important;
    margin-top: 0.3rem !important;
  }
  
  .contact-form .btn i {
    font-size: 0.75rem !important;
    margin-right: 0.35rem !important;
  }
  
  .captcha-display {
    font-size: 0.75rem !important;
    padding: 0.3rem 0.45rem !important;
  }
  
  .captcha-container .btn {
    padding: 0.3rem 0.45rem !important;
    font-size: 0.7rem !important;
  }
}

@media (max-width: 480px) {
  .contact-form-section {
    padding: 25px 0 !important;
  }
  
  .contact-form-section .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  
  .contact-form-section .col-lg-6 {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 0.875rem;
  }
  
  .content-points .section-title {
    font-size: 1.05rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .points-list {
    margin-top: 0.625rem !important;
  }
  
  .point-item {
    margin-bottom: 0.65rem !important;
    padding-left: 25px !important;
  }
  
  .point-item .point-icon {
    width: 22px !important;
    height: 22px !important;
    font-size: 11px !important;
  }
  
  .point-item .point-content h4 {
    font-size: 0.75rem !important;
    line-height: 1.25 !important;
  }
  
  .contact-form-container {
    padding: 0.75rem 0.6rem !important;
    margin-top: 0.875rem;
  }
  
  .contact-form-container .form-header {
    margin-bottom: 0.65rem !important;
  }
  
  .contact-form-container .form-header h3 {
    font-size: 1rem !important;
    margin-bottom: 0.25rem !important;
  }
  
  .contact-form-container .form-header p {
    font-size: 0.7rem !important;
  }
  
  .contact-form .row {
    margin-left: -3px !important;
    margin-right: -3px !important;
  }
  
  .contact-form .col-md-6 {
    padding-left: 3px !important;
    padding-right: 3px !important;
  }
  
  .contact-form .mb-3 {
    margin-bottom: 0.55rem !important;
  }
  
  .contact-form .form-label {
    font-size: 0.65rem !important;
    margin-bottom: 0.2rem !important;
  }
  
  .contact-form .form-control,
  .contact-form .form-select {
    padding: 0.3rem 0.45rem !important;
    font-size: 0.7rem !important;
    line-height: 1.25 !important;
  }
  
  .contact-form .btn {
    padding: 0.55rem 0.8rem !important;
    font-size: 0.75rem !important;
    margin-top: 0.25rem !important;
  }
  
  .contact-form .btn i {
    font-size: 0.7rem !important;
    margin-right: 0.3rem !important;
  }
  
  .captcha-display {
    font-size: 0.7rem !important;
    padding: 0.25rem 0.4rem !important;
  }
  
  .captcha-container .btn {
    padding: 0.25rem 0.4rem !important;
    font-size: 0.65rem !important;
  }
}

@media (max-width: 375px) {
  .contact-form-section {
    padding: 20px 0 !important;
  }
  
  .contact-form-section .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  
  .contact-form-section .col-lg-6 {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 0.75rem;
  }
  
  .content-points .section-title {
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .points-list {
    margin-top: 0.5rem !important;
  }
  
  .point-item {
    margin-bottom: 0.55rem !important;
    padding-left: 22px !important;
  }
  
  .point-item .point-icon {
    width: 20px !important;
    height: 20px !important;
    font-size: 10px !important;
  }
  
  .point-item .point-content h4 {
    font-size: 0.7rem !important;
    line-height: 1.2 !important;
  }
  
  .contact-form-container {
    padding: 0.65rem 0.5rem !important;
    margin-top: 0.75rem;
  }
  
  .contact-form-container .form-header {
    margin-bottom: 0.55rem !important;
  }
  
  .contact-form-container .form-header h3 {
    font-size: 0.95rem !important;
    margin-bottom: 0.2rem !important;
  }
  
  .contact-form-container .form-header p {
    font-size: 0.65rem !important;
  }
  
  .contact-form .row {
    margin-left: -2px !important;
    margin-right: -2px !important;
  }
  
  .contact-form .col-md-6 {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }
  
  .contact-form .mb-3 {
    margin-bottom: 0.45rem !important;
  }
  
  .contact-form .form-label {
    font-size: 0.6rem !important;
    margin-bottom: 0.15rem !important;
  }
  
  .contact-form .form-control,
  .contact-form .form-select {
    padding: 0.25rem 0.4rem !important;
    font-size: 0.65rem !important;
    line-height: 1.2 !important;
  }
  
  .contact-form .btn {
    padding: 0.5rem 0.7rem !important;
    font-size: 0.7rem !important;
    margin-top: 0.2rem !important;
  }
  
  .contact-form .btn i {
    font-size: 0.65rem !important;
    margin-right: 0.25rem !important;
  }
  
  .captcha-display {
    font-size: 0.65rem !important;
    padding: 0.2rem 0.35rem !important;
  }
  
  .captcha-container .btn {
    padding: 0.2rem 0.35rem !important;
    font-size: 0.6rem !important;
  }
}

/* Other Services Section - Mobile Slider & Compact */
.other-services-grid-desktop {
  display: flex;
}

.other-services-slider-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .other-services-section {
    padding: 40px 0 !important;
  }
  
  .other-services-section .section-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .other-services-section .section-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
  }
  
  .other-services-grid-desktop {
    display: none !important;
  }
  
  .other-services-slider-mobile {
    display: block;
    position: relative;
    margin-top: 1.5rem;
  }
  
  .other-services-slider-container {
    position: relative;
    padding: 0 15px;
  }
  
  .other-services-slider-wrapper {
    overflow: hidden;
    position: relative;
  }
  
  .other-services-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
  }
  
  .other-service-slide-item {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
  }
  
  .other-services-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }
  
  .other-service-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .other-service-dot.active {
    background: #1F3BB3;
    width: 30px;
    border-radius: 5px;
  }
  
  .other-services-slider-mobile .service-card {
    margin-bottom: 0;
    padding: 1.5rem 1.25rem !important;
  }
  
  .other-services-slider-mobile .service-icon {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 1rem !important;
  }
  
  .other-services-slider-mobile .service-icon i {
    font-size: 28px !important;
  }
  
  .other-services-slider-mobile .service-card h4 {
    font-size: 1.1rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .other-services-slider-mobile .service-card p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem !important;
  }
  
  .other-services-slider-mobile .service-link {
    font-size: 0.85rem !important;
    padding: 0.5rem 1rem !important;
  }
}

@media (max-width: 768px) {
  .other-services-section {
    padding: 35px 0 !important;
  }
  
  .other-services-section .section-title {
    font-size: 1.35rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .other-services-section .section-subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 0.875rem !important;
  }
  
  .other-services-slider-mobile {
    margin-top: 1.25rem;
  }
  
  .other-services-slider-container {
    padding: 0 10px;
  }
  
  .other-services-slider-dots {
    margin-top: 12px;
  }
  
  .other-services-slider-mobile .service-card {
    padding: 1.25rem 1rem !important;
  }
  
  .other-services-slider-mobile .service-icon {
    width: 55px !important;
    height: 55px !important;
    margin-bottom: 0.875rem !important;
  }
  
  .other-services-slider-mobile .service-icon i {
    font-size: 26px !important;
  }
  
  .other-services-slider-mobile .service-card h4 {
    font-size: 1rem !important;
    margin-bottom: 0.65rem !important;
  }
  
  .other-services-slider-mobile .service-card p {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
    margin-bottom: 0.875rem !important;
  }
  
  .other-services-slider-mobile .service-link {
    font-size: 0.8rem !important;
    padding: 0.45rem 0.9rem !important;
  }
}

@media (max-width: 576px) {
  .other-services-section {
    padding: 30px 0 !important;
  }
  
  .other-services-section .section-title {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .other-services-section .section-subtitle {
    font-size: 0.8rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .other-services-slider-mobile {
    margin-top: 1rem;
  }
  
  .other-services-slider-container {
    padding: 0 5px;
  }
  
  .other-services-slider-dots {
    margin-top: 10px;
    gap: 6px;
  }
  
  .other-service-dot {
    width: 8px;
    height: 8px;
  }
  
  .other-service-dot.active {
    width: 25px;
  }
  
  .other-services-slider-mobile .service-card {
    padding: 1rem 0.875rem !important;
  }
  
  .other-services-slider-mobile .service-icon {
    width: 50px !important;
    height: 50px !important;
    margin-bottom: 0.75rem !important;
  }
  
  .other-services-slider-mobile .service-icon i {
    font-size: 24px !important;
  }
  
  .other-services-slider-mobile .service-card h4 {
    font-size: 0.95rem !important;
    margin-bottom: 0.55rem !important;
  }
  
  .other-services-slider-mobile .service-card p {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.75rem !important;
  }
  
  .other-services-slider-mobile .service-link {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.8rem !important;
  }
}

@media (max-width: 480px) {
  .other-services-section {
    padding: 25px 0 !important;
  }
  
  .other-services-section .section-title {
    font-size: 1.05rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  .other-services-section .section-subtitle {
    font-size: 0.75rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .other-services-slider-mobile {
    margin-top: 0.875rem;
  }
  
  .other-services-slider-container {
    padding: 0 4px;
  }
  
  .other-services-slider-dots {
    margin-top: 8px;
    gap: 5px;
  }
  
  .other-services-slider-mobile .service-card {
    padding: 0.875rem 0.75rem !important;
  }
  
  .other-services-slider-mobile .service-icon {
    width: 45px !important;
    height: 45px !important;
    margin-bottom: 0.65rem !important;
  }
  
  .other-services-slider-mobile .service-icon i {
    font-size: 22px !important;
  }
  
  .other-services-slider-mobile .service-card h4 {
    font-size: 0.9rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .other-services-slider-mobile .service-card p {
    font-size: 0.75rem !important;
    line-height: 1.35 !important;
    margin-bottom: 0.65rem !important;
  }
  
  .other-services-slider-mobile .service-link {
    font-size: 0.7rem !important;
    padding: 0.35rem 0.7rem !important;
  }
}

@media (max-width: 375px) {
  .other-services-section {
    padding: 20px 0 !important;
  }
  
  .other-services-section .section-title {
    font-size: 1rem !important;
    margin-bottom: 0.35rem !important;
  }
  
  .other-services-section .section-subtitle {
    font-size: 0.7rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .other-services-slider-mobile {
    margin-top: 0.75rem;
  }
  
  .other-services-slider-container {
    padding: 0 3px;
  }
  
  .other-services-slider-dots {
    margin-top: 6px;
    gap: 4px;
  }
  
  .other-services-slider-mobile .service-card {
    padding: 0.75rem 0.6rem !important;
  }
  
  .other-services-slider-mobile .service-icon {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 0.55rem !important;
  }
  
  .other-services-slider-mobile .service-icon i {
    font-size: 20px !important;
  }
  
  .other-services-slider-mobile .service-card h4 {
    font-size: 0.85rem !important;
    margin-bottom: 0.45rem !important;
  }
  
  .other-services-slider-mobile .service-card p {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.55rem !important;
  }
  
  .other-services-slider-mobile .service-link {
    font-size: 0.65rem !important;
    padding: 0.3rem 0.6rem !important;
  }
}

/* Testimonials Section - Mobile Compact */
@media (max-width: 991.98px) {
  .testimonials-section {
    padding: 40px 0 !important;
  }
  
  .testimonials-section .section-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .testimonials-section .section-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
  }
  
  .testimonials-container {
    margin-top: 1.5rem !important;
    padding: 0 15px;
  }
  
  .testimonial-item {
    padding: 0 8px;
  }
  
  .testimonial-card {
    padding: 1.25rem 1rem !important;
    margin-bottom: 1rem !important;
  }
  
  .testimonial-avatar {
    width: 50px !important;
    height: 50px !important;
    margin-bottom: 0.875rem !important;
  }
  
  .testimonial-avatar i {
    font-size: 22px !important;
  }
  
  .testimonial-content {
    padding-left: 0 !important;
  }
  
  .testimonial-name {
    font-size: 1rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .testimonial-text {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 35px 0 !important;
  }
  
  .testimonials-section .section-title {
    font-size: 1.35rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .testimonials-section .section-subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 0.875rem !important;
  }
  
  .testimonials-container {
    margin-top: 1.25rem !important;
    padding: 0 12px;
  }
  
  .testimonial-item {
    padding: 0 6px;
  }
  
  .testimonial-card {
    padding: 1rem 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }
  
  .testimonial-avatar {
    width: 45px !important;
    height: 45px !important;
    margin-bottom: 0.75rem !important;
  }
  
  .testimonial-avatar i {
    font-size: 20px !important;
  }
  
  .testimonial-name {
    font-size: 0.95rem !important;
    margin-bottom: 0.55rem !important;
  }
  
  .testimonial-text {
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
  }
}

@media (max-width: 576px) {
  .testimonials-section {
    padding: 30px 0 !important;
  }
  
  .testimonials-section .section-title {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .testimonials-section .section-subtitle {
    font-size: 0.8rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .testimonials-container {
    margin-top: 1rem !important;
    padding: 0 10px;
  }
  
  .testimonial-item {
    padding: 0 5px;
  }
  
  .testimonial-card {
    padding: 0.875rem 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .testimonial-avatar {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 0.65rem !important;
  }
  
  .testimonial-avatar i {
    font-size: 18px !important;
  }
  
  .testimonial-name {
    font-size: 0.9rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .testimonial-text {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 25px 0 !important;
  }
  
  .testimonials-section .section-title {
    font-size: 1.05rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  .testimonials-section .section-subtitle {
    font-size: 0.75rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .testimonials-container {
    margin-top: 0.875rem !important;
    padding: 0 8px;
  }
  
  .testimonial-item {
    padding: 0 4px;
  }
  
  .testimonial-card {
    padding: 0.75rem 0.65rem !important;
    margin-bottom: 0.65rem !important;
  }
  
  .testimonial-avatar {
    width: 35px !important;
    height: 35px !important;
    margin-bottom: 0.55rem !important;
  }
  
  .testimonial-avatar i {
    font-size: 16px !important;
  }
  
  .testimonial-name {
    font-size: 0.85rem !important;
    margin-bottom: 0.45rem !important;
  }
  
  .testimonial-text {
    font-size: 0.7rem !important;
    line-height: 1.35 !important;
    text-align: justify;
  }
}

@media (max-width: 375px) {
  .testimonials-section {
    padding: 20px 0 !important;
  }
  
  .testimonials-section .section-title {
    font-size: 1rem !important;
    margin-bottom: 0.35rem !important;
  }
  
  .testimonials-section .section-subtitle {
    font-size: 0.7rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .testimonials-container {
    margin-top: 0.75rem !important;
    padding: 0 5px;
  }
  
  .testimonial-item {
    padding: 0 3px;
  }
  
  .testimonial-card {
    padding: 0.65rem 0.55rem !important;
    margin-bottom: 0.55rem !important;
  }
  
  .testimonial-avatar {
    width: 30px !important;
    height: 30px !important;
    margin-bottom: 0.45rem !important;
  }
  
  .testimonial-avatar i {
    font-size: 14px !important;
  }
  
  .testimonial-name {
    font-size: 0.8rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  .testimonial-text {
    font-size: 0.65rem !important;
    line-height: 1.3 !important;
  }
}

/* FAQ Section - Mobile Compact */
@media (max-width: 991.98px) {
  .faq-section {
    padding: 40px 0 !important;
  }
  
  .faq-section .section-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .faq-section .section-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
  }
  
  .faq-section .row.mt-5 {
    margin-top: 1.5rem !important;
  }
  
  .faq-section .col-lg-10 {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .faq-container {
    padding: 0 !important;
  }
  
  .faq-item {
    margin-bottom: 0.875rem !important;
    border-radius: 8px !important;
  }
  
  .faq-question {
    padding: 0.875rem 1rem !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
  }
  
  .faq-question span {
    font-size: 0.9rem !important;
    padding-right: 1.5rem !important;
  }
  
  .faq-icon {
    font-size: 0.9rem !important;
    width: 20px !important;
    height: 20px !important;
  }
  
  .faq-answer {
    padding: 0 1rem 0.875rem 1rem !important;
  }
  
  .faq-content {
    padding-top: 0.5rem !important;
  }
  
  .faq-content p {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 35px 0 !important;
  }
  
  .faq-section .section-title {
    font-size: 1.35rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .faq-section .section-subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 0.875rem !important;
  }
  
  .faq-section .row.mt-5 {
    margin-top: 1.25rem !important;
  }
  
  .faq-section .col-lg-10 {
    padding-left: 12px;
    padding-right: 12px;
  }
  
  .faq-item {
    margin-bottom: 0.75rem !important;
    border-radius: 6px !important;
  }
  
  .faq-question {
    padding: 0.75rem 0.875rem !important;
    font-size: 0.85rem !important;
    line-height: 1.35 !important;
  }
  
  .faq-question span {
    font-size: 0.85rem !important;
    padding-right: 1.25rem !important;
  }
  
  .faq-icon {
    font-size: 0.85rem !important;
    width: 18px !important;
    height: 18px !important;
  }
  
  .faq-answer {
    padding: 0 0.875rem 0.75rem 0.875rem !important;
  }
  
  .faq-content {
    padding-top: 0.45rem !important;
  }
  
  .faq-content p {
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 30px 0 !important;
  }
  
  .faq-section .section-title {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .faq-section .section-subtitle {
    font-size: 0.8rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .faq-section .row.mt-5 {
    margin-top: 1rem !important;
  }
  
  .faq-section .col-lg-10 {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .faq-item {
    margin-bottom: 0.65rem !important;
    border-radius: 5px !important;
  }
  
  .faq-question {
    padding: 0.65rem 0.75rem !important;
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
  }
  
  .faq-question span {
    font-size: 0.8rem !important;
    padding-right: 1rem !important;
  }
  
  .faq-icon {
    font-size: 0.8rem !important;
    width: 16px !important;
    height: 16px !important;
  }
  
  .faq-answer {
    padding: 0 0.75rem 0.65rem 0.75rem !important;
  }
  
  .faq-content {
    padding-top: 0.4rem !important;
  }
  
  .faq-content p {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 25px 0 !important;
  }
  
  .faq-section .section-title {
    font-size: 1.05rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  .faq-section .section-subtitle {
    font-size: 0.75rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .faq-section .row.mt-5 {
    margin-top: 0.875rem !important;
  }
  
  .faq-section .col-lg-10 {
    padding-left: 8px;
    padding-right: 8px;
  }
  
  .faq-item {
    margin-bottom: 0.55rem !important;
    border-radius: 4px !important;
  }
  
  .faq-question {
    padding: 0.55rem 0.65rem !important;
    font-size: 0.75rem !important;
    line-height: 1.25 !important;
  }
  
  .faq-question span {
    font-size: 0.75rem !important;
    padding-right: 0.875rem !important;
  }
  
  .faq-icon {
    font-size: 0.75rem !important;
    width: 14px !important;
    height: 14px !important;
  }
  
  .faq-answer {
    padding: 0 0.65rem 0.55rem 0.65rem !important;
  }
  
  .faq-content {
    padding-top: 0.35rem !important;
  }
  
  .faq-content p {
    font-size: 0.7rem !important;
    line-height: 1.35 !important;
  }
}

@media (max-width: 375px) {
  .faq-section {
    padding: 20px 0 !important;
  }
  
  .faq-section .section-title {
    font-size: 1rem !important;
    margin-bottom: 0.35rem !important;
  }
  
  .faq-section .section-subtitle {
    font-size: 0.7rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .faq-section .row.mt-5 {
    margin-top: 0.75rem !important;
  }
  
  .faq-section .col-lg-10 {
    padding-left: 5px;
    padding-right: 5px;
  }
  
  .faq-item {
    margin-bottom: 0.45rem !important;
    border-radius: 3px !important;
  }
  
  .faq-question {
    padding: 0.45rem 0.55rem !important;
    font-size: 0.7rem !important;
    line-height: 1.2 !important;
  }
  
  .faq-question span {
    font-size: 0.7rem !important;
    padding-right: 0.75rem !important;
  }
  
  .faq-icon {
    font-size: 0.7rem !important;
    width: 12px !important;
    height: 12px !important;
  }
  
  .faq-answer {
    padding: 0 0.55rem 0.45rem 0.55rem !important;
  }
  
  .faq-content {
    padding-top: 0.3rem !important;
  }
  
  .faq-content p {
    font-size: 0.65rem !important;
    line-height: 1.3 !important;
  }
}

/* Portfolio Showcase Section - Mobile Slider & Compact */
.portfolio-grid-desktop {
  display: block;
}

.portfolio-slider-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .portfolio-showcase-section {
    padding: 40px 0 !important;
  }
  
  .portfolio-showcase-section .section-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .portfolio-showcase-section .section-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
  }
  
  .portfolio-grid-desktop {
    display: none !important;
  }
  
  .portfolio-slider-mobile {
    display: block;
    position: relative;
    margin-top: 1.5rem;
  }
  
  .portfolio-slider-container {
    position: relative;
    padding: 0 15px;
  }
  
  .portfolio-slider-wrapper {
    overflow: hidden;
    position: relative;
  }
  
  .portfolio-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
  }
  
  .portfolio-slide-item {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
  }
  
  .portfolio-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }
  
  .portfolio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .portfolio-dot.active {
    background: #1F3BB3;
    width: 30px;
    border-radius: 5px;
  }
  
  .portfolio-slider-mobile .portfolio-website-card {
    margin-bottom: 0;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .portfolio-slider-mobile .website-image {
    height: 180px !important;
    overflow: hidden;
  }
  
  .portfolio-slider-mobile .website-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .portfolio-slider-mobile .website-overlay {
    opacity: 0.85;
  }
  
  .portfolio-slider-mobile .website-info {
    padding: 1rem 0.875rem !important;
  }
  
  .portfolio-slider-mobile .website-name {
    font-size: 1rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  .portfolio-slider-mobile .website-type {
    font-size: 0.85rem !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 768px) {
  .portfolio-showcase-section {
    padding: 35px 0 !important;
  }
  
  .portfolio-showcase-section .section-title {
    font-size: 1.35rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .portfolio-showcase-section .section-subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 0.875rem !important;
  }
  
  .portfolio-slider-mobile {
    margin-top: 1.25rem;
  }
  
  .portfolio-slider-container {
    padding: 0 12px;
  }
  
  .portfolio-slider-dots {
    margin-top: 12px;
  }
  
  .portfolio-slider-mobile .website-image {
    height: 160px !important;
  }
  
  .portfolio-slider-mobile .website-info {
    padding: 0.875rem 0.75rem !important;
  }
  
  .portfolio-slider-mobile .website-name {
    font-size: 0.95rem !important;
    margin-bottom: 0.35rem !important;
  }
  
  .portfolio-slider-mobile .website-type {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 576px) {
  .portfolio-showcase-section {
    padding: 30px 0 !important;
  }
  
  .portfolio-showcase-section .section-title {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .portfolio-showcase-section .section-subtitle {
    font-size: 0.8rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .portfolio-slider-mobile {
    margin-top: 1rem;
  }
  
  .portfolio-slider-container {
    padding: 0 10px;
  }
  
  .portfolio-slider-dots {
    margin-top: 10px;
    gap: 6px;
  }
  
  .portfolio-dot {
    width: 8px;
    height: 8px;
  }
  
  .portfolio-dot.active {
    width: 25px;
  }
  
  .portfolio-slider-mobile .website-image {
    height: 140px !important;
  }
  
  .portfolio-slider-mobile .website-info {
    padding: 0.75rem 0.65rem !important;
  }
  
  .portfolio-slider-mobile .website-name {
    font-size: 0.9rem !important;
    margin-bottom: 0.3rem !important;
  }
  
  .portfolio-slider-mobile .website-type {
    font-size: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  .portfolio-showcase-section {
    padding: 25px 0 !important;
  }
  
  .portfolio-showcase-section .section-title {
    font-size: 1.05rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  .portfolio-showcase-section .section-subtitle {
    font-size: 0.75rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .portfolio-slider-mobile {
    margin-top: 0.875rem;
  }
  
  .portfolio-slider-container {
    padding: 0 8px;
  }
  
  .portfolio-slider-dots {
    margin-top: 8px;
    gap: 5px;
  }
  
  .portfolio-slider-mobile .website-image {
    height: 120px !important;
  }
  
  .portfolio-slider-mobile .website-info {
    padding: 0.65rem 0.55rem !important;
  }
  
  .portfolio-slider-mobile .website-name {
    font-size: 0.85rem !important;
    margin-bottom: 0.25rem !important;
  }
  
  .portfolio-slider-mobile .website-type {
    font-size: 0.7rem !important;
  }
}

@media (max-width: 375px) {
  .portfolio-showcase-section {
    padding: 20px 0 !important;
  }
  
  .portfolio-showcase-section .section-title {
    font-size: 1rem !important;
    margin-bottom: 0.35rem !important;
  }
  
  .portfolio-showcase-section .section-subtitle {
    font-size: 0.7rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .portfolio-slider-mobile {
    margin-top: 0.75rem;
  }
  
  .portfolio-slider-container {
    padding: 0 5px;
  }
  
  .portfolio-slider-dots {
    margin-top: 6px;
    gap: 4px;
  }
  
  .portfolio-slider-mobile .website-image {
    height: 100px !important;
  }
  
  .portfolio-slider-mobile .website-info {
    padding: 0.55rem 0.45rem !important;
  }
  
  .portfolio-slider-mobile .website-name {
    font-size: 0.8rem !important;
    margin-bottom: 0.2rem !important;
  }
  
  .portfolio-slider-mobile .website-type {
    font-size: 0.65rem !important;
  }
}

/* Comparison Table Section - Mobile Compact */
@media (max-width: 991.98px) {
  .comparison-table-section {
    padding: 40px 0 !important;
  }
  
  .comparison-table-section .section-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
  }
  
  .comparison-table-section .section-subtitle {
    font-size: 0.9rem !important;
    margin-top: 0.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  .comparison-table-section .mb-5 {
    margin-bottom: 1.5rem !important;
  }
  
  .comparison-table-wrapper {
    border-radius: 8px !important;
    margin: 0 15px;
  }
  
  .comparison-table {
    min-width: 600px !important;
    font-size: 0.85rem !important;
  }
  
  .comparison-table thead th {
    padding: 12px 10px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
  }
  
  .comparison-table tbody td {
    padding: 10px 8px !important;
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }
  
  .comparison-table tbody td:first-child {
    font-size: 0.85rem !important;
    padding: 10px 8px !important;
  }
}

@media (max-width: 768px) {
  .comparison-table-section {
    padding: 35px 0 !important;
  }
  
  .comparison-table-section .section-title {
    font-size: 1.35rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .comparison-table-section .section-subtitle {
    font-size: 0.85rem !important;
    margin-top: 0.4rem !important;
    margin-bottom: 0.875rem !important;
  }
  
  .comparison-table-section .mb-5 {
    margin-bottom: 1.25rem !important;
  }
  
  .comparison-table-wrapper {
    margin: 0 12px;
    border-radius: 6px !important;
  }
  
  .comparison-table {
    min-width: 550px !important;
    font-size: 0.8rem !important;
  }
  
  .comparison-table thead th {
    padding: 10px 8px !important;
    font-size: 0.8rem !important;
  }
  
  .comparison-table tbody td {
    padding: 8px 6px !important;
    font-size: 0.75rem !important;
    line-height: 1.35 !important;
  }
  
  .comparison-table tbody td:first-child {
    font-size: 0.8rem !important;
    padding: 8px 6px !important;
  }
}

@media (max-width: 576px) {
  .comparison-table-section {
    padding: 30px 0 !important;
  }
  
  .comparison-table-section .section-title {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .comparison-table-section .section-subtitle {
    font-size: 0.8rem !important;
    margin-top: 0.3rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .comparison-table-section .mb-5 {
    margin-bottom: 1rem !important;
  }
  
  .comparison-table-wrapper {
    margin: 0 10px;
    border-radius: 5px !important;
  }
  
  .comparison-table {
    min-width: 500px !important;
    font-size: 0.75rem !important;
  }
  
  .comparison-table thead th {
    padding: 8px 6px !important;
    font-size: 0.75rem !important;
  }
  
  .comparison-table tbody td {
    padding: 6px 5px !important;
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
  }
  
  .comparison-table tbody td:first-child {
    font-size: 0.75rem !important;
    padding: 6px 5px !important;
  }
}

@media (max-width: 480px) {
  .comparison-table-section {
    padding: 25px 0 !important;
  }
  
  .comparison-table-section .section-title {
    font-size: 1.05rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  .comparison-table-section .section-subtitle {
    font-size: 0.75rem !important;
    margin-top: 0.25rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .comparison-table-section .mb-5 {
    margin-bottom: 0.875rem !important;
  }
  
  .comparison-table-wrapper {
    margin: 0 8px;
    border-radius: 4px !important;
  }
  
  .comparison-table {
    min-width: 450px !important;
    font-size: 0.7rem !important;
  }
  
  .comparison-table thead th {
    padding: 6px 5px !important;
    font-size: 0.7rem !important;
  }
  
  .comparison-table tbody td {
    padding: 5px 4px !important;
    font-size: 0.65rem !important;
    line-height: 1.25 !important;
  }
  
  .comparison-table tbody td:first-child {
    font-size: 0.7rem !important;
    padding: 5px 4px !important;
  }
}

@media (max-width: 375px) {
  .comparison-table-section {
    padding: 20px 0 !important;
  }
  
  .comparison-table-section .section-title {
    font-size: 1rem !important;
    margin-bottom: 0.35rem !important;
  }
  
  .comparison-table-section .section-subtitle {
    font-size: 0.7rem !important;
    margin-top: 0.2rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .comparison-table-section .mb-5 {
    margin-bottom: 0.75rem !important;
  }
  
  .comparison-table-wrapper {
    margin: 0 5px;
    border-radius: 3px !important;
  }
  
  .comparison-table {
    min-width: 400px !important;
    font-size: 0.65rem !important;
  }
  
  .comparison-table thead th {
    padding: 5px 4px !important;
    font-size: 0.65rem !important;
  }
  
  .comparison-table tbody td {
    padding: 4px 3px !important;
    font-size: 0.6rem !important;
    line-height: 1.2 !important;
  }
  
  .comparison-table tbody td:first-child {
    font-size: 0.65rem !important;
    padding: 4px 3px !important;
  }
}

/* Blog Posts Section - Mobile Slider & Compact */
.blog-grid-desktop {
  display: flex;
}

.blog-slider-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .blog-posts-section {
    padding: 40px 0 !important;
  }
  
  .blog-posts-section .section-header h2 {
    font-size: 1.5rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .blog-posts-section .section-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
  }
  
  .blog-grid-desktop {
    display: none !important;
  }
  
  .blog-slider-mobile {
    display: block;
    position: relative;
    margin-top: 1.5rem;
  }
  
  .blog-slider-container {
    position: relative;
    padding: 0 15px;
  }
  
  .blog-slider-wrapper {
    overflow: hidden;
    position: relative;
  }
  
  .blog-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
  }
  
  .blog-slide-item {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
  }
  
  .blog-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }
  
  .blog-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .blog-dot.active {
    background: #1F3BB3;
    width: 30px;
    border-radius: 5px;
  }
  
  .blog-slider-mobile .blog-post-card {
    margin-bottom: 0;
    /* Keep original border radius */
    border-bottom-left-radius: 60px !important;
    border-top-right-radius: 60px !important;
    /* Keep original box shadow */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    overflow: hidden;
  }
  
  .blog-slider-mobile .blog-post-image {
    height: 240px !important;
    overflow: hidden;
  }
  
  .blog-slider-mobile .blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .blog-slider-mobile .blog-post-content {
    padding: 1.25rem !important;
  }
  
  .blog-slider-mobile .blog-post-meta {
    margin-bottom: 0.875rem !important;
    font-size: 0.8rem !important;
  }
  
  .blog-slider-mobile .blog-post-title {
    font-size: 1rem !important;
    margin-bottom: 0.875rem !important;
  }
  
  .blog-slider-mobile .blog-post-title a {
    font-size: 1rem !important;
    line-height: 1.4 !important;
  }
  
  .blog-slider-mobile .blog-post-excerpt {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.25rem !important;
  }
  
  .blog-slider-mobile .blog-post-footer {
    padding-top: 0.875rem !important;
    border-top: 1px solid #e9ecef !important;
  }
  
  .blog-slider-mobile .blog-author-small {
    font-size: 0.85rem !important;
  }
  
  .blog-slider-mobile .read-more-link {
    font-size: 0.85rem !important;
  }
  
  .blog-posts-section .explore-more-btn {
    padding: 0.7rem 1.5rem !important;
    font-size: 0.9rem !important;
    margin-top: 1rem !important;
  }
}

@media (max-width: 768px) {
  .blog-posts-section {
    padding: 35px 0 !important;
  }
  
  .blog-posts-section .section-header h2 {
    font-size: 1.35rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .blog-posts-section .section-subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 0.875rem !important;
  }
  
  .blog-slider-mobile {
    margin-top: 1.25rem;
  }
  
  .blog-slider-container {
    padding: 0 12px;
  }
  
  .blog-slider-dots {
    margin-top: 12px;
  }
  
  .blog-slider-mobile .blog-post-image {
    height: 220px !important;
  }
  
  .blog-slider-mobile .blog-post-content {
    padding: 1.125rem !important;
  }
  
  .blog-slider-mobile .blog-post-meta {
    margin-bottom: 0.75rem !important;
    font-size: 0.75rem !important;
  }
  
  .blog-slider-mobile .blog-post-title {
    margin-bottom: 0.75rem !important;
  }
  
  .blog-slider-mobile .blog-post-title a {
    font-size: 0.95rem !important;
  }
  
  .blog-slider-mobile .blog-post-excerpt {
    font-size: 0.85rem !important;
    margin-bottom: 1rem !important;
  }
  
  .blog-slider-mobile .blog-post-footer {
    padding-top: 0.75rem !important;
  }
  
  .blog-slider-mobile .read-more-link {
    font-size: 0.8rem !important;
  }
  
  .blog-posts-section .explore-more-btn {
    padding: 0.65rem 1.25rem !important;
    font-size: 0.85rem !important;
    margin-top: 0.875rem !important;
  }
}

@media (max-width: 576px) {
  .blog-posts-section {
    padding: 30px 0 !important;
  }
  
  .blog-posts-section .section-header h2 {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .blog-posts-section .section-subtitle {
    font-size: 0.8rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .blog-slider-mobile {
    margin-top: 1rem;
  }
  
  .blog-slider-container {
    padding: 0 10px;
  }
  
  .blog-slider-dots {
    margin-top: 10px;
    gap: 6px;
  }
  
  .blog-dot {
    width: 8px;
    height: 8px;
  }
  
  .blog-dot.active {
    width: 25px;
  }
  
  .blog-slider-mobile .blog-post-image {
    height: 200px !important;
  }
  
  .blog-slider-mobile .blog-post-content {
    padding: 1rem !important;
  }
  
  .blog-slider-mobile .blog-post-meta {
    margin-bottom: 0.65rem !important;
    font-size: 0.7rem !important;
  }
  
  .blog-slider-mobile .blog-post-title {
    margin-bottom: 0.65rem !important;
  }
  
  .blog-slider-mobile .blog-post-title a {
    font-size: 0.9rem !important;
  }
  
  .blog-slider-mobile .blog-post-excerpt {
    font-size: 0.8rem !important;
    margin-bottom: 0.875rem !important;
  }
  
  .blog-slider-mobile .blog-post-footer {
    padding-top: 0.65rem !important;
  }
  
  .blog-slider-mobile .read-more-link {
    font-size: 0.75rem !important;
  }
  
  .blog-posts-section .explore-more-btn {
    padding: 0.6rem 1rem !important;
    font-size: 0.8rem !important;
    margin-top: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  .blog-posts-section {
    padding: 25px 0 !important;
  }
  
  .blog-posts-section .section-header h2 {
    font-size: 1.05rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  .blog-posts-section .section-subtitle {
    font-size: 0.75rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .blog-slider-mobile {
    margin-top: 0.875rem;
  }
  
  .blog-slider-container {
    padding: 0 8px;
  }
  
  .blog-slider-dots {
    margin-top: 8px;
    gap: 5px;
  }
  
  .blog-slider-mobile .blog-post-image {
    height: 180px !important;
  }
  
  .blog-slider-mobile .blog-post-content {
    padding: 0.875rem !important;
  }
  
  .blog-slider-mobile .blog-post-meta {
    margin-bottom: 0.55rem !important;
    font-size: 0.65rem !important;
  }
  
  .blog-slider-mobile .blog-post-title {
    margin-bottom: 0.55rem !important;
  }
  
  .blog-slider-mobile .blog-post-title a {
    font-size: 0.85rem !important;
  }
  
  .blog-slider-mobile .blog-post-excerpt {
    font-size: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .blog-slider-mobile .blog-post-footer {
    padding-top: 0.55rem !important;
  }
  
  .blog-slider-mobile .read-more-link {
    font-size: 0.7rem !important;
  }
  
  .blog-posts-section .explore-more-btn {
    padding: 0.55rem 0.9rem !important;
    font-size: 0.75rem !important;
    margin-top: 0.65rem !important;
  }
}

@media (max-width: 375px) {
  .blog-posts-section {
    padding: 20px 0 !important;
  }
  
  .blog-posts-section .section-header h2 {
    font-size: 1rem !important;
    margin-bottom: 0.35rem !important;
  }
  
  .blog-posts-section .section-subtitle {
    font-size: 0.7rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .blog-slider-mobile {
    margin-top: 0.75rem;
  }
  
  .blog-slider-container {
    padding: 0 5px;
  }
  
  .blog-slider-dots {
    margin-top: 6px;
    gap: 4px;
  }
  
  .blog-slider-mobile .blog-post-image {
    height: 160px !important;
  }
  
  .blog-slider-mobile .blog-post-content {
    padding: 0.75rem !important;
  }
  
  .blog-slider-mobile .blog-post-meta {
    margin-bottom: 0.5rem !important;
    font-size: 0.6rem !important;
  }
  
  .blog-slider-mobile .blog-post-title {
    margin-bottom: 0.5rem !important;
  }
  
  .blog-slider-mobile .blog-post-title a {
    font-size: 0.8rem !important;
  }
  
  .blog-slider-mobile .blog-post-excerpt {
    font-size: 0.7rem !important;
    margin-bottom: 0.65rem !important;
  }
  
  .blog-slider-mobile .blog-post-footer {
    padding-top: 0.5rem !important;
  }
  
  .blog-slider-mobile .read-more-link {
    font-size: 0.65rem !important;
  }
  
  .blog-posts-section .explore-more-btn {
    padding: 0.5rem 0.8rem !important;
    font-size: 0.7rem !important;
    margin-top: 0.55rem !important;
  }
}

/* Audience Section - Mobile Compact */
@media (max-width: 991.98px) {
  .audience-section {
    padding: 40px 0 !important;
  }
  
  .audience-section .section-title {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  .audience-cards-container {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .audience-card {
    min-width: 140px !important;
    min-height: 140px !important;
    padding: 0.75rem 0.75rem !important;
  }
  
  .audience-image {
    width: 65px !important;
    height: 52px !important;
    margin-bottom: 0.5rem !important;
  }
  
  .audience-label {
    font-size: 0.85rem !important;
    margin-top: 0 !important;
    padding: 0.2rem 0.4rem !important;
  }
  
  .audience-description {
    margin-top: 1.5rem !important;
    padding: 0 15px;
  }
  
  .audience-description .col-lg-10 {
    padding: 0;
  }
  
  .audience-description p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0.875rem !important;
  }
}

@media (max-width: 768px) {
  .audience-section {
    padding: 35px 0 !important;
  }
  
  .audience-section .section-title {
    font-size: 1.35rem !important;
    margin-bottom: 0.875rem !important;
  }
  
  .audience-cards-container {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  
  .audience-card {
    min-width: 120px !important;
    min-height: 120px !important;
    padding: 0.65rem 0.65rem !important;
  }
  
  .audience-image {
    width: 55px !important;
    height: 44px !important;
    margin-bottom: 0.4rem !important;
  }
  
  .audience-label {
    font-size: 0.8rem !important;
    margin-top: 0 !important;
    padding: 0.15rem 0.35rem !important;
  }
  
  .audience-description {
    margin-top: 1.25rem !important;
    padding: 0 12px;
  }
  
  .audience-description p {
    font-size: 0.85rem !important;
    line-height: 1.55 !important;
    margin-bottom: 0.75rem !important;
  }
}

@media (max-width: 576px) {
  .audience-section {
    padding: 30px 0 !important;
  }
  
  .audience-section .section-title {
    font-size: 1.2rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .audience-cards-container {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  
  .audience-card {
    min-width: 100px !important;
    min-height: 110px !important;
    padding: 0.55rem 0.55rem !important;
  }
  
  .audience-image {
    width: 50px !important;
    height: 40px !important;
    margin-bottom: 0.35rem !important;
  }
  
  .audience-label {
    font-size: 0.75rem !important;
    margin-top: 0 !important;
    padding: 0.12rem 0.3rem !important;
  }
  
  .audience-description {
    margin-top: 1rem !important;
    padding: 0 10px;
  }
  
  .audience-description p {
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0.65rem !important;
  }
}

@media (max-width: 480px) {
  .audience-section {
    padding: 25px 0 !important;
  }
  
  .audience-section .section-title {
    font-size: 1.05rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .audience-cards-container {
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }
  
  .audience-card {
    min-width: 90px !important;
    min-height: 100px !important;
    padding: 0.5rem 0.5rem !important;
  }
  
  .audience-image {
    width: 45px !important;
    height: 36px !important;
    margin-bottom: 0.3rem !important;
  }
  
  .audience-label {
    font-size: 0.7rem !important;
    margin-top: 0 !important;
    padding: 0.1rem 0.25rem !important;
  }
  
  .audience-description {
    margin-top: 0.875rem !important;
    padding: 0 8px;
  }
  
  .audience-description p {
    font-size: 0.75rem !important;
    line-height: 1.45 !important;
    margin-bottom: 0.55rem !important;
  }
}

@media (max-width: 375px) {
  .audience-section {
    padding: 20px 0 !important;
  }
  
  .audience-section .section-title {
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .audience-cards-container {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .audience-card {
    min-width: 80px !important;
    min-height: 90px !important;
    padding: 0.45rem 0.45rem !important;
  }
  
  .audience-image {
    width: 40px !important;
    height: 32px !important;
    margin-bottom: 0.25rem !important;
  }
  
  .audience-label {
    font-size: 0.65rem !important;
    margin-top: 0 !important;
    padding: 0.08rem 0.25rem !important;
  }
  
  .audience-description {
    margin-top: 0.75rem !important;
    padding: 0 5px;
  }
  
  .audience-description p {
    font-size: 0.7rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.5rem !important;
  }
}

/* Technology Section - Mobile Compact */
@media (max-width: 991.98px) {
  .technology-section {
    padding: 40px 0 !important;
  }
  
  .technology-section .section-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .technology-section .section-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
  }
  
  .technology-slider {
    margin-top: 1.5rem;
  }
  
  .technology-item {
    flex: 0 0 140px !important;
    padding: 14px 10px !important;
    min-width: 140px !important;
    max-width: 140px !important;
    margin: 0 8px !important;
    margin-top: 8px !important;
    margin-bottom: 12px !important;
  }
  
  .tech-icon {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 10px !important;
  }
  
  .tech-icon i {
    font-size: 1.5rem !important;
  }
  
  .technology-item h4 {
    font-size: 0.95rem !important;
    margin-bottom: 5px !important;
  }
  
  .technology-item p {
    font-size: 0.75rem !important;
  }
}

@media (max-width: 768px) {
  .technology-section {
    padding: 35px 0 !important;
  }
  
  .technology-section .section-title {
    font-size: 1.35rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .technology-section .section-subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 0.875rem !important;
  }
  
  .technology-slider {
    margin-top: 1.25rem;
  }
  
  .technology-item {
    flex: 0 0 120px !important;
    padding: 12px 8px !important;
    min-width: 120px !important;
    max-width: 120px !important;
    margin: 0 6px !important;
    margin-top: 6px !important;
    margin-bottom: 10px !important;
  }
  
  .tech-icon {
    width: 35px !important;
    height: 35px !important;
    margin-bottom: 8px !important;
  }
  
  .tech-icon i {
    font-size: 1.3rem !important;
  }
  
  .technology-item h4 {
    font-size: 0.85rem !important;
    margin-bottom: 4px !important;
  }
  
  .technology-item p {
    font-size: 0.7rem !important;
  }
}

@media (max-width: 576px) {
  .technology-section {
    padding: 30px 0 !important;
  }
  
  .technology-section .section-title {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .technology-section .section-subtitle {
    font-size: 0.8rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .technology-slider {
    margin-top: 1rem;
  }
  
  .technology-item {
    flex: 0 0 100px !important;
    padding: 10px 6px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    margin: 0 5px !important;
    margin-top: 5px !important;
    margin-bottom: 8px !important;
  }
  
  .tech-icon {
    width: 30px !important;
    height: 30px !important;
    margin-bottom: 6px !important;
  }
  
  .tech-icon i {
    font-size: 1.1rem !important;
  }
  
  .technology-item h4 {
    font-size: 0.75rem !important;
    margin-bottom: 3px !important;
  }
  
  .technology-item p {
    font-size: 0.65rem !important;
  }
}

@media (max-width: 480px) {
  .technology-section {
    padding: 25px 0 !important;
  }
  
  .technology-section .section-title {
    font-size: 1.05rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  .technology-section .section-subtitle {
    font-size: 0.75rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .technology-slider {
    margin-top: 0.875rem;
  }
  
  .technology-item {
    flex: 0 0 90px !important;
    padding: 8px 5px !important;
    min-width: 90px !important;
    max-width: 90px !important;
    margin: 0 4px !important;
    margin-top: 4px !important;
    margin-bottom: 6px !important;
  }
  
  .tech-icon {
    width: 28px !important;
    height: 28px !important;
    margin-bottom: 5px !important;
  }
  
  .tech-icon i {
    font-size: 1rem !important;
  }
  
  .technology-item h4 {
    font-size: 0.7rem !important;
    margin-bottom: 2px !important;
  }
  
  .technology-item p {
    font-size: 0.6rem !important;
  }
}

@media (max-width: 375px) {
  .technology-section {
    padding: 20px 0 !important;
  }
  
  .technology-section .section-title {
    font-size: 1rem !important;
    margin-bottom: 0.35rem !important;
  }
  
  .technology-section .section-subtitle {
    font-size: 0.7rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .technology-slider {
    margin-top: 0.75rem;
  }
  
  .technology-item {
    flex: 0 0 80px !important;
    padding: 7px 4px !important;
    min-width: 80px !important;
    max-width: 80px !important;
    margin: 0 3px !important;
    margin-top: 3px !important;
    margin-bottom: 5px !important;
  }
  
  .tech-icon {
    width: 25px !important;
    height: 25px !important;
    margin-bottom: 4px !important;
  }
  
  .tech-icon i {
    font-size: 0.9rem !important;
  }
  
  .technology-item h4 {
    font-size: 0.65rem !important;
    margin-bottom: 2px !important;
  }
  
  .technology-item p {
    font-size: 0.55rem !important;
  }
}

/* Course Highlights Section - Mobile Compact (Additional Styles) */
@media (max-width: 991.98px) {
  .course-highlights-section {
    padding: 40px 0 !important;
  }
  
  .course-highlights-section .section-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .course-highlights-section .section-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
  }
  
  .course-highlights-section .row.mt-5 {
    margin-top: 1.5rem !important;
  }
  
  .course-content {
    margin-top: 1.5rem;
  }
  
  .content-panel {
    padding: 1rem 0 !important;
  }
  
  .content-header h3 {
    font-size: 1.25rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .content-header p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
  }
  
  .content-features {
    margin-bottom: 1rem !important;
  }
  
  .feature-item {
    margin-bottom: 0.875rem !important;
    padding-left: 30px !important;
  }
  
  .feature-icon {
    width: 22px !important;
    height: 22px !important;
    font-size: 12px !important;
  }
  
  .feature-text p {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }
  
  .content-image {
    margin-top: 1rem !important;
  }
  
  .content-image img {
    border-radius: 8px !important;
  }
}

@media (max-width: 768px) {
  .course-highlights-section {
    padding: 35px 0 !important;
  }
  
  .course-highlights-section .section-title {
    font-size: 1.35rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .course-highlights-section .section-subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 0.875rem !important;
  }
  
  .course-highlights-section .row.mt-5 {
    margin-top: 1.25rem !important;
  }
  
  .course-content {
    margin-top: 1.25rem;
  }
  
  .content-panel {
    padding: 0.875rem 0 !important;
  }
  
  .content-header h3 {
    font-size: 1.15rem !important;
    margin-bottom: 0.65rem !important;
  }
  
  .content-header p {
    font-size: 0.85rem !important;
    margin-bottom: 0.875rem !important;
  }
  
  .content-features {
    margin-bottom: 0.875rem !important;
  }
  
  .feature-item {
    margin-bottom: 0.75rem !important;
    padding-left: 28px !important;
  }
  
  .feature-icon {
    width: 20px !important;
    height: 20px !important;
    font-size: 11px !important;
  }
  
  .feature-text p {
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
  }
  
  .content-image {
    margin-top: 0.875rem !important;
  }
}

@media (max-width: 576px) {
  .course-highlights-section {
    padding: 30px 0 !important;
  }
  
  .course-highlights-section .section-title {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .course-highlights-section .section-subtitle {
    font-size: 0.8rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .course-highlights-section .row.mt-5 {
    margin-top: 1rem !important;
  }
  
  .course-content {
    margin-top: 1rem;
  }
  
  .content-panel {
    padding: 0.75rem 0 !important;
  }
  
  .content-header h3 {
    font-size: 1.05rem !important;
    margin-bottom: 0.55rem !important;
  }
  
  .content-header p {
    font-size: 0.8rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .content-features {
    margin-bottom: 0.75rem !important;
  }
  
  .feature-item {
    margin-bottom: 0.65rem !important;
    padding-left: 25px !important;
  }
  
  .feature-icon {
    width: 18px !important;
    height: 18px !important;
    font-size: 10px !important;
  }
  
  .feature-text p {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
  }
  
  .content-image {
    margin-top: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  .course-highlights-section {
    padding: 25px 0 !important;
  }
  
  .course-highlights-section .section-title {
    font-size: 1.05rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  .course-highlights-section .section-subtitle {
    font-size: 0.75rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  .course-highlights-section .row.mt-5 {
    margin-top: 0.875rem !important;
  }
  
  .course-content {
    margin-top: 0.875rem;
  }
  
  .content-panel {
    padding: 0.65rem 0 !important;
  }
  
  .content-header h3 {
    font-size: 0.95rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .content-header p {
    font-size: 0.75rem !important;
    margin-bottom: 0.65rem !important;
  }
  
  .content-features {
    margin-bottom: 0.65rem !important;
  }
  
  .feature-item {
    margin-bottom: 0.55rem !important;
    padding-left: 22px !important;
  }
  
  .feature-icon {
    width: 16px !important;
    height: 16px !important;
    font-size: 9px !important;
  }
  
  .feature-text p {
    font-size: 0.7rem !important;
    line-height: 1.35 !important;
  }
  
  .content-image {
    margin-top: 0.65rem !important;
  }
}

@media (max-width: 375px) {
  .course-highlights-section {
    padding: 20px 0 !important;
  }
  
  .course-highlights-section .section-title {
    font-size: 1rem !important;
    margin-bottom: 0.35rem !important;
  }
  
  .course-highlights-section .section-subtitle {
    font-size: 0.7rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .course-highlights-section .row.mt-5 {
    margin-top: 0.75rem !important;
  }
  
  .course-content {
    margin-top: 0.75rem;
  }
  
  .content-panel {
    padding: 0.55rem 0 !important;
  }
  
  .content-header h3 {
    font-size: 0.9rem !important;
    margin-bottom: 0.45rem !important;
  }
  
  .content-header p {
    font-size: 0.7rem !important;
    margin-bottom: 0.55rem !important;
  }
  
  .content-features {
    margin-bottom: 0.55rem !important;
  }
  
  .feature-item {
    margin-bottom: 0.45rem !important;
    padding-left: 20px !important;
  }
  
  .feature-icon {
    width: 14px !important;
    height: 14px !important;
    font-size: 8px !important;
  }
  
  .feature-text p {
    font-size: 0.65rem !important;
    line-height: 1.3 !important;
  }
  
  .content-image {
    margin-top: 0.55rem !important;
  }
}
