
    :root {
      --bs-primary: #4F46E5;
      --bs-primary-rgb: 79, 70, 229;
      --bs-secondary: #F59E0B;
      --bs-secondary-rgb: 245, 158, 11;
      --bs-tertiary: #F8FAFC;
      --bs-tertiary-rgb: 248, 250, 252;
      --primary: #4F46E5;
      --secondary: #F59E0B;
      --accent: #10B981;
      --tertiary: #F8FAFC;
    }

    * {
      -webkit-font-smoothing: antialiased;
    }

    body {
      font-family: 'Rubik', sans-serif;
      color: #334155;
      overflow-x: hidden; /* Prevents horizontal scroll from SVGs */
    }

    /* Ensure all images are responsive and don't cause overflow */
    img {
      max-width: 100%;
      height: auto;
    }

    a {
      text-decoration: none;
      transition: 0.3s;
    }

    .btn-primary {
      background-color: var(--bs-primary);
      border-color: var(--bs-primary);
      border-radius: 8px;
      padding: 0.6rem 1.5rem;
      font-weight: 500;
      transition: 0.3s;
    }

    .btn-primary:hover {
      background-color: #4338CA;
      border-color: #4338CA;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    }

    .btn-outline-primary {
      color: var(--bs-primary);
      border-color: var(--bs-primary);
      border-radius: 8px;
      font-weight: 500;
    }

    .btn-outline-primary:hover {
      background-color: var(--bs-primary);
      border-color: var(--bs-primary);
    }

    /* Navbar */
    .navigation {
      background-color: var(--bs-tertiary) !important;
      box-shadow: 0 2px 10px rgba(0,0,0,0.03);
      position: sticky;
      top: 0;
      z-index: 1030;
    }

    .nav-link {
      font-weight: 500;
      color: #334155;
      padding: 0.5rem 1rem !important;
    }

    .nav-link:hover {
      color: var(--bs-primary);
    }

    /* Hero Section */
    .banner {
      background-color: var(--bs-tertiary) !important;
      padding: 4rem 0;
    }

    .banner h1 {
      font-weight: 700;
      color: #1E293B;
      line-height: 1.2;
    }

    /* Shapes */
    .has-shapes {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }
    
    .has-shapes svg {
      opacity: 0.4;
    }

    .container {
      position: relative;
      z-index: 2;
    }

    /* Services/Courses Grid */
    .section {
      padding: 5rem 0;
    }

    .section-title h1 {
      font-weight: 700;
      color: #1E293B;
    }

    .service-item {
      margin-bottom: 30px;
      transition: all 0.3s ease;
    }

    .service-item .block {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      height: 100%;
      box-shadow: 0 4px 15px rgba(0,0,0,0.04);
      border: 1px solid #f1f5f9;
      transition: all 0.3s ease;
    }
    
    .service-item:hover .block {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.08);
      border-color: #e2e8f0;
    }

    .colored-box {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 65px;
      height: 65px;
      background: rgba(var(--bs-primary-rgb), 0.1);
      color: var(--bs-primary);
      border-radius: 12px;
      font-size: 24px;
      transition: 0.3s;
    }

    .service-item:hover .colored-box {
      background: var(--bs-primary);
      color: white;
      transform: rotate(-5deg) scale(1.1);
    }

    .service-title {
      color: #1E293B;
      font-weight: 600;
      transition: all 0.3s;
    }

    .service-item:hover .service-title {
      color: var(--bs-primary);
    }

    /* Featured Courses */
    .course-card {
      border: 1px solid #f1f5f9;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.04);
      margin-bottom: 20px;
      height: 100%;
      background: #fff;
      display: flex;
      flex-direction: column;
    }

    .course-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

   
.course-thumbnail {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

  

    .course-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      z-index: 1;
      padding: 5px 12px;
      border-radius: 10px;
      font-size: 0.8rem;
      font-weight: 250;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .card-body {
      display: flex;
      flex-direction: column;
      padding: 1.5rem;
      flex-grow: 1;
    }

    .card-title {
      font-weight: 600;
      color: #1E293B;
    }

    .course-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin: 10px 0 15px 0;
      font-size: 0.9rem;
      color: #64748B;
    }

    .course-meta-item {
      display: flex;
      align-items: center;
    }

    .course-meta-item i {
      margin-right: 6px;
      color: var(--bs-primary);
    }

    .course-price {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--bs-secondary);
      margin-bottom: 10px;
    }

    .card-text {
      color: #64748B;
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
    }

    .mt-auto {
      margin-top: auto;
    }

    /* Rating Section */
    .rating-section-home {
      background: #fff;
      padding: 60px 0;
    }
    .rating-card-home {
      background: #fff;
      border-radius: 16px;
      padding: 40px 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
      border: 1px solid #f1f5f9;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: 0.3s;
      max-width: 600px;
      margin: 0 auto;
    }
    .rating-card-home .google-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
    }
    .rating-card-home .google-badge i {
      font-size: 32px;
      color: #4285F4;
    }
    .rating-card-home .google-badge span {
      font-weight: 600;
      font-size: 20px;
      color: #334155;
    }
    .rating-number-home {
      font-size: 56px;
      font-weight: 700;
      color: #1E293B;
      line-height: 1.1;
    }
    .rating-number-home small {
      font-size: 28px;
      font-weight: 400;
      color: #64748B;
      margin-left: 4px;
    }
    .stars-home {
      color: #f9ab00;
      font-size: 24px;
      letter-spacing: 4px;
      margin-top: 5px;
    }
    .rating-text-home {
      font-size: 15px;
      color: #64748B;
      margin-top: 15px;
      margin-bottom: 0;
    }
    .btn-google-review-home {
      background: #4285F4;
      color: #fff;
      border-radius: 8px;
      padding: 12px 30px;
      font-weight: 500;
      transition: 0.3s;
      border: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      font-size: 15px;
      margin-top: 25px;
    }
    .btn-google-review-home:hover {
      background: #3367d6;
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(66,133,244,0.3);
    }

    /* About Section */
    .about-section {
      background-color: var(--bs-tertiary) !important;
    }

    /* Why Choose Us */
    .difference-of-us-item {
      background: #fff;
      padding: 25px !important;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.04);
      margin-bottom: 20px;
      transition: 0.3s;
    }
    .difference-of-us-item:hover {
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }
    .difference-of-us-item .icon {
      background: rgba(var(--bs-primary-rgb), 0.1);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--bs-primary);
    }
    .difference-of-us-item .icon i {
      font-size: 24px;
      margin-top: 0 !important;
    }

    /* Tabs */
    .homepage_tab .nav-pills .nav-link {
      border: 1px solid var(--bs-primary);
      color: var(--bs-primary);
      border-radius: 8px;
      padding: 10px 20px;
      font-weight: 500;
    }
    .homepage_tab .nav-pills .nav-link.active {
      background-color: var(--bs-primary);
      color: #fff;
    }
    .tab-content {
      border-radius: 12px;
    }

    /* FAQ */
    .accordion-item {
      border: 1px solid #e2e8f0 !important;
      border-radius: 8px !important;
      margin-bottom: 15px;
      overflow: hidden;
    }
    .accordion-button {
      font-weight: 500;
      color: #1E293B;
      padding: 1.2rem 1.5rem;
    }
    .accordion-button:not(.collapsed) {
      background: rgba(var(--bs-primary-rgb), 0.05);
      color: var(--bs-primary);
      box-shadow: none;
    }
    .accordion-button:focus {
      box-shadow: none;
      border-color: var(--bs-primary);
    }

    /* Footer */
    footer {
      background-color: var(--bs-tertiary) !important;
      padding-top: 4rem !important;
    }
    .footer-widget h5 {
      font-weight: 600;
      color: #1E293B;
    }
    .footer-widget ul li a {
      color: #64748B;
      font-size: 0.95rem;
    }
    .footer-widget ul li a:hover {
      color: var(--bs-primary);
      padding-left: 5px;
    }
    .social-icons a {
      color: #64748B;
      font-size: 1.2rem;
      transition: 0.3s;
    }
    .social-icons a:hover {
      color: var(--bs-primary);
      transform: translateY(-3px);
    }

    .floating-element {
      animation: float 6s ease-in-out infinite;
    }
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
      100% { transform: translateY(0px); }
    }

    /* Responsive Tweaks */
    @media (max-width: 768px) {
      .banner {
        padding: 2rem 0;
        text-align: center;
      }
      /* .banner .block {
        pe-0: none;
      } */
      .section {
        padding: 3rem 0;
      }
      .rating-number-home {
        font-size: 42px;
      }
      .rating-number-home small {
        font-size: 24px;
      }
      .btn-google-review-home {
        width: 100%;
        justify-content: center;
      }
      .course-meta {
        justify-content: space-between;
      }
    }
  