        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

          body {
              font-family: 'Poppins', sans-serif;
              overflow-x: hidden !important;
          }
                  html {
                      scroll-behavior: smooth;
                  }
        /* Hero Section */
        .hero-section {
            background: linear-gradient(to bottom,
                    rgba(0, 120, 212, 0.85) 0%,
                        /* Strong Windows blue at top */
                        rgba(0, 120, 212, 0.35) 40%,
                        /* Smooth blue fade */
                        rgba(255, 255, 255, 0.1) 55%,
                        /* Light white fade */
                        rgba(255, 255, 255, 1) 90%
                        /* Full white bottom */
                );

            /* Glass blur effect same as image */
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);

            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

        /* Background Decorations */
        .bg-decoration-1 {
            position: absolute;
            top: 80px;
            right: 25%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            filter: blur(80px);
            z-index: 0;
        }

        .bg-decoration-2 {
            position: absolute;
            bottom: 80px;
            left: 25%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            filter: blur(80px);
            z-index: 0;
        }

        /* Navbar Styles */
        .navbar {
            padding: 1.5rem 0;
            transition: all 0.4s ease;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .navbar.scrolled {
            background: white;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            color: white !important;
            font-size: 1.5rem;
            font-weight: 600;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .navbar.scrolled .navbar-brand {
            color: #d1a346 !important;
        }

        .navbar-brand img {
            display: block;
        }

        .navbar-brand span {
            font-size: 2.4rem;
        }


        .nav-link {
            color: white !important;
            margin: 0 1rem;
            transition: all 0.3s;
            font-weight: 500;
        }

        .navbar.scrolled .nav-link {
            color: #333 !important;
        }

        .nav-link:hover {
            opacity: 0.7;
            transform: translateY(-2px);
        }

        .register-btn {
            border: 2px solid white;
            text-decoration: none;
            color: white;
            padding: 0.75rem 2rem !important;
            border-radius: 50px;
            background: transparent ;
            transition: all 0.3s;
            font-weight: 500;
        }

        .register-btn:hover {
            background: white;
            color: #0078D4;
            transform: translateY(-2px);
        }

        .navbar.scrolled .register-btn {
            border-color: #0078D4;
            color: #0078D4;
        }

        .navbar.scrolled .register-btn:hover {
            background: #0078D4;
            color: white;
        }

        /* Custom Hamburger Menu */
        .navbar-toggler {
            border: none;
            padding: 0;
            width: 30px;
            height: 30px;
            position: relative;
            cursor: pointer;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .hamburger-icon {
            position: relative;
            display: block;
            width: 30px;
            height: 20px;
        }

        .hamburger-icon span {
            position: absolute;
            left: 0;
            width: 100%;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .hamburger-icon span {
            background: #333;
        }

        .hamburger-icon span:nth-child(1) {
            top: 0;
        }

        .hamburger-icon span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .hamburger-icon span:nth-child(3) {
            bottom: 0;
        }

        /* Hamburger Animation */
        .navbar-toggler.active .hamburger-icon span:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }

        .navbar-toggler.active .hamburger-icon span:nth-child(2) {
            opacity: 0;
        }

        .navbar-toggler.active .hamburger-icon span:nth-child(3) {
            bottom: 50%;
            transform: translateY(50%) rotate(-45deg);
        }

        /* Mobile Sidebar */
        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: linear-gradient(135deg, #0078D4 0%, #005A9E 100%);
            z-index: 9999;
            transition: right 0.4s ease;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
            overflow-y: auto;
        }

        .mobile-sidebar.active {
            right: 0;
        }

        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .sidebar-header {
            padding: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sidebar-brand {
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .sidebar-close {
            background: transparent;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .sidebar-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .sidebar-menu {
            padding: 2rem 0;
        }

        .sidebar-menu .nav-link {
            color: white !important;
            padding: 1rem 2rem;
            margin: 0;
            display: flex;
            align-items: center;
            transition: all 0.3s;
            border-left: 3px solid transparent;
        }

        .sidebar-menu .nav-link:hover {
            background: rgba(255, 255, 255, 0.1);
            border-left-color: white;
            padding-left: 2.5rem;
        }

        .sidebar-menu .nav-link i {
            margin-right: 1rem;
            font-size: 1.25rem;
        }

        .sidebar-footer {
            padding: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            position: absolute;
            bottom: 0;
            width: 100%;
        }

        .sidebar-footer .register-btn {
            width: 100%;
            border-color: white;
            color: white;
            background: transparent;
            padding: 1rem;
            font-size: 1rem;
        }



        .sidebar-footer .register-btn:hover {
            background: white;
            color: #0078D4;
        }

        /* Content Wrapper */
        .content-wrapper {
            position: relative;
            z-index: 10;
            padding-top: 100px;
        }

        /* Platform Badge */
        .platform-badge {
            display: inline-flex;
            align-items: center;
            background: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }

        .platform-badge i {
            color: #0078D4;
            font-size: 1.25rem;
            margin-right: 0.5rem;
        }

        .platform-badge span {
            color: #333;
            font-weight: 500;
        }

        /* Hero Content */
        .hero-content {
            padding: 3rem 0 5rem 0;
        }

        .main-heading {
            font-size: 3.5rem;
            font-weight: 600;
            color: #1e3a5f;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .sub-heading {
            color: #555;
            font-size: 1.25rem;
            margin-bottom: 3rem;

            margin-left: auto;
            margin-right: auto;
        }

        /* Search Bar */
        .search-container {
            background: white;
            border-radius: 50px;
            padding: 0.75rem;
            box-shadow: 0 20px 60px rgba(0, 120, 212, 0.35);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .search-input-group {
            display: flex;
            align-items: center;
            flex: 1;
            padding: 0 1rem;
        }

        .search-input-group i {
            color: #999;
            font-size: 1.25rem;
            margin-right: 0.75rem;
        }

        .search-input-group input {
            border: none;
            outline: none;
            width: 100%;
            font-size: 1rem;
            color: #333;
        }

        .search-input-group input::placeholder {
            color: #999;
        }

        .search-divider {
            width: 1px;
            height: 40px;
            background: #e0e0e0;
        }

        .search-btn {
            background: #0c0c0c;
            color: white;
            border: none;
            padding: 1rem 3rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .search-btn:hover {
            background: #0078D4;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
        }

        /* Responsive Styles */
        @media (max-width: 991px) {
            .navbar .container {
                max-width: 100%;
            }

            .desktop-menu {
                display: none !important;
            }

            .register-btn.d-lg-block {
                display: none !important;
            }
        }

        @media (max-width: 768px) {
            .main-heading {
                font-size: 2.5rem;
            }

            .sub-heading {
                font-size: 1rem;
            }

            .search-container {
                flex-direction: column;
                border-radius: 20px;
                padding: 1rem;
            }

            .search-divider {
                display: none;
            }

            .search-input-group {
                width: 100%;
                padding: 0.75rem 1rem;
                background: #f8f9fa;
                border-radius: 10px;
                margin-bottom: 0.5rem;
            }

            .search-btn {
                width: 100%;
                padding: 1rem;
            }

            .platform-badge {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }

            .mobile-sidebar {
                width: 80%;
            }
        }

        @media (max-width: 480px) {
            .main-heading {
                font-size: 2rem;
            }

            .navbar-brand {
                font-size: 1.25rem;
            }
        }


        /* image sliding */
        .slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 40px 0;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 20px;
            padding: 0 20px;
        }

        .slide {
            flex: 0 0 280px;
            height: 320px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Background colors for each slide */
        .slide:nth-child(1) {
            background-color: #e8f4f8;
        }

        .slide:nth-child(2) {
            background-color: #fff9e6;
        }

        .slide:nth-child(3) {
            background-color: #e3f2fd;
        }

        .slide:nth-child(4) {
            background-color: #e8f5e9;
        }

        .slide:nth-child(5) {
            background-color: #fff3e0;
        }

        .slide:nth-child(6) {
            background-color: #f3e5f5;
        }

        /* Navigation dots */
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #d0d0d0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background-color: #0078D4;
            width: 30px;
            border-radius: 5px;
        }

        /* Mobile optimization */
        @media (max-width: 768px) {
            .slide {
                flex: 0 0 240px;
                height: 280px;
            }

            .slider-wrapper {
                gap: 15px;
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .slide {
                flex: 0 0 200px;
                height: 240px;
            }

            .slider-wrapper {
                gap: 12px;
                padding: 0 12px;
            }
        }


        /* Subscription Section */
        .subscription-section {
            padding: 5rem 0;
            background: #f8f9fa;
        }
.subscription-card {
    background: linear-gradient(to bottom,
            rgba(0, 120, 212, 0.85) 0%,
            /* Strong Windows blue */
            rgba(0, 120, 212, 0.35) 25%,
            /* Smooth fade */
            rgba(255, 255, 255, 0.1) 55%,
            /* Light white fade */
            rgba(255, 255, 255, 1) 90%
            /* Full white bottom */
        );

    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);

    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.subscription-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: 10%;
    width: 300px;
    height: 300px;
    background: rgba(0, 120, 212, 0.15);
    /* Windows blue glow */
    border-radius: 50%;
    filter: blur(60px);
}

.subscription-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 10%;
    width: 300px;
    height: 300px;
    background: rgba(0, 120, 212, 0.12);
    /* Soft Windows blue glow */
    border-radius: 50%;
    filter: blur(60px);
}

        .subscription-title {
            font-size: 2.25rem;
            font-weight: 600;
            color: #222;
            margin-bottom: 1rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 10;
            line-height: 1.3;
        }

        .subscription-description {
            font-size: 1rem;
            color: #666;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 10;
            line-height: 1.6;
        }

        .subscription-form {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .email-input-wrapper {
            flex: 1;
            display: flex;
            align-items: center;
            background: white;
            border-radius: 50px;
            padding: 0 1.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .email-input-wrapper i {
            color: #999;
            font-size: 1.25rem;
            margin-right: 1rem;
        }

        .email-input {
            flex: 1;
            border: none;
            outline: none;
            padding: 1.25rem 0;
            font-size: 1rem;
            color: #333;
        }

        .email-input::placeholder {
            color: #999;
        }

        .join-btn {
            background: #0b0b0a;
            color: white;
            border: none;
            padding: 1.25rem 3rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
            box-shadow: 0 5px 20px rgba(13, 110, 253, 0.3);
        }

        .join-btn:hover {
            background: #0078D4;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 99, 248, 0.4);
        }

        @media (max-width: 768px) {
            .subscription-section {
                padding: 3rem 0;
            }

            .subscription-card {
                padding: 3rem 1.5rem;
                border-radius: 20px;
            }

            .subscription-title {
                font-size: 1.75rem;
            }

            .subscription-description {
                font-size: 0.95rem;
            }

            .subscription-form {
                flex-direction: column;
                width: 100%;
            }

            .email-input-wrapper {
                width: 100%;
            }

            .join-btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .subscription-title {
                font-size: 1.5rem;
            }

            .subscription-card {
                padding: 2.5rem 1.25rem;
            }
        }


        /* why choose us */
        .why_choose_cntr {
            margin-top: 70px;
            margin-bottom: 70px;
        }

        .header-section {
            text-align: center;
            margin-bottom: 50px;
        }

        .header-section h1 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .header-section p {
            color: #6c757d;
            font-size: 16px;
        }

        .category-tabs {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 50px;
            border-bottom: 2px solid #e9ecef;
            flex-wrap: wrap;
        }

        .category-tab {
            padding: 15px 20px;
            cursor: pointer;
            color: #6c757d;
            font-size: 15px;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .category-tab:hover {
            color: #007bff;
        }

        .category-tab.active {
            color: #007bff;
            border-bottom-color: #007bff;
        }

        .masters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .master-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #c6c6c6;
            position: relative;
        }

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

        .master-card.featured {
            background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
            border: 2px solid #e3f2fd;
        }

        .master-avatar {
            width: 115px;
            height: 115px;
            border-radius: 50%;
            margin: 0 auto 15px;
            object-fit: cover;

            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }


        .master-name {
            font-size: 20px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 5px;
        }

        .master-role {
            font-size: 14px;
            color: #6c757d;
            margin-bottom: 15px;
        }

        .skills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
        }

        .skill-tag {
            padding: 6px 14px;
            background: #f8f9fa;
            border-radius: 20px;
            font-size: 12px;
            color: #495057;
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
        }

        .skill-tag:hover {
            background: #0078D4;
            color: white;
            border-color: #0078D4;
        }



        @media (max-width: 768px) {
            .header-section h1 {
                font-size: 32px;
            }

            .masters-grid {
                grid-template-columns: 1fr;
            }

            .category-tabs {
                overflow-x: auto;
                justify-content: flex-start;
                padding: 0 15px;
            }
        }

        /* why choose us */


        /* testmonial */
          /* Testimonial Section */
          .testimonial_cntr {
              margin-top: 80px;
              margin-bottom: 80px;

              max-width: 100%;
              overflow: hidden;
              box-sizing: border-box;
          }
    
          .section-title {
              font-size: 2.5rem;
              font-weight: 600;
              color: #1a1a1a;
              text-align: center;
              margin-bottom: 25px;
          }
    
          .testimonial-container {
              display: flex;
              gap: 24px;
              align-items: stretch;
              max-width: 100%;
              box-sizing: border-box;
          }
    
          .testimonial-card {
              background: #2d3339;
              border-radius: 20px;
              padding: 50px;
              flex: 1;
              display: flex;
              flex-direction: column;
              justify-content: space-between;
              color: white;
              min-height: 400px;
              box-sizing: border-box;
          }
    
          .client-info {
              text-align: center;
          }
    
          .client-name {
              font-size: 1rem;
              font-weight: 500;
              margin-bottom: 5px;
          }
    
          .client-position {
              font-size: 0.9rem;
              color: #b0b0b0;
          }
    
          .testimonial-text {
              font-size: 1.75rem;
              font-weight: 500;
              line-height: 1.4;
              text-align: center;
              flex-grow: 1;
              display: flex;
              align-items: center;
              justify-content: center;
              margin: 30px 0;
          }
    
          .carousel-controls {
              display: flex;
              justify-content: center;
              gap: 15px;
              margin-top: 20px;
          }
    
          .carousel-btn {
              width: 50px;
              height: 50px;
              border-radius: 50%;
              border: none;
              cursor: pointer;
              display: flex;
              align-items: center;
              justify-content: center;
              font-size: 1.2rem;
              transition: all 0.3s ease;
          }
    
          .carousel-btn.prev {
              background: white;
              color: #2d3339;
          }
    
          .carousel-btn.prev:hover {
              background: #f0f0f0;
          }
    
          .carousel-btn.next {
              background: #0078D4;
              color: white;
          }
    
          .carousel-btn.next:hover {
              background: #070707;
          }
    
          .testimonial-image {
              flex: 1;
              border-radius: 20px;
              overflow: hidden;
              max-width: 450px;
              box-sizing: border-box;
          }
    
          .testimonial-image img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              display: block;
          }
    
          .testimonial-item {
              display: none;
          }
    
          .testimonial-item.active {
              display: flex;
          }
    
          /* Tablet Screens */
          @media (max-width: 992px) {
              .testimonial_cntr {
                  margin-top: 60px;
                  margin-bottom: 60px;
             
              }
    
              .section-title {
                  font-size: 2rem;
                  margin-bottom: 20px;
              }
    
              .testimonial-container {
                  flex-direction: column;
                  gap: 20px;
              }
    
              .testimonial-card {
                  min-height: 350px;
                  padding: 40px;
              }
    
              .testimonial-text {
                  font-size: 1.5rem;
                  margin: 25px 0;
              }
    
              .testimonial-image {
                  max-width: 100%;
                  height: 400px;
                  width: 100%;
              }
          }
    
          /* Small Tablet / Large Mobile */
          @media (max-width: 768px) {
              .testimonial_cntr {
                  margin-top: 50px;
                  margin-bottom: 50px;
             
              }
    
              .section-title {
                  font-size: 1.75rem;
                  margin-bottom: 20px;
              }
    
              .testimonial-card {
                  padding: 35px;
                  min-height: 320px;
              }
    
              .testimonial-text {
                  font-size: 1.35rem;
                  margin: 20px 0;
                  line-height: 1.5;
              }
    
              .testimonial-image {
                  height: 350px;
              }
    
              .carousel-btn {
                  width: 45px;
                  height: 45px;
                  font-size: 1.1rem;
              }
          }
    
          /* Mobile Screens */
          @media (max-width: 576px) {
              .testimonial_cntr {
                  margin-top: 40px;
                  margin-bottom: 40px;
               
              }
    
              .section-title {
                  font-size: 1.5rem;
                  margin-bottom: 15px;
                  padding: 0 10px;
              }
    
              .testimonial-container {
                  gap: 15px;
              }
    
              .testimonial-card {
                  padding: 25px;
                  min-height: 280px;
                  border-radius: 15px;
              }
    
              .client-name {
                  font-size: 0.95rem;
              }
    
              .client-position {
                  font-size: 0.85rem;
              }
    
              .testimonial-text {
                  font-size: 1.15rem;
                  margin: 20px 0;
                  line-height: 1.5;
              }
    
              .testimonial-image {
                  height: 300px;
                  border-radius: 15px;
              }
    
              .carousel-controls {
                  gap: 12px;
                  margin-bottom: 20px;
                  margin-top: 15px;
              }
    
              .carousel-btn {
                  width: 40px;
                  height: 40px;
                  font-size: 1rem;
              }
          }
    
          /* Extra Small Screens */
          @media (max-width: 400px) {
              .testimonial_cntr {
                  margin-top: 30px;
                  margin-bottom: 30px;
         
              }
    
              .section-title {
                  font-size: 1.35rem;
                  margin-bottom: 12px;
              }
    
              .testimonial-card {
                  padding: 20px;
                  min-height: 250px;
                  border-radius: 12px;
              }
    
              .client-name {
                  font-size: 0.9rem;
              }
    
              .client-position {
                  font-size: 0.8rem;
              }
    
              .testimonial-text {
                  font-size: 1rem;
                  margin: 15px 0;
                  line-height: 1.6;
              }
    
              .testimonial-image {
                  height: 250px;
                  border-radius: 12px;
              }
    
              .carousel-controls {
                  gap: 10px;
                  margin-top: 12px;
              }
    
              .carousel-btn {
                  width: 38px;
                  height: 38px;
                  font-size: 0.95rem;
              }
          }
    
          /* Very Small Screens */
          @media (max-width: 360px) {
              .section-title {
                  font-size: 1.25rem;
              }
    
              .testimonial-card {
                  padding: 18px;
                  min-height: 230px;
              }
    
              .testimonial-text {
                  font-size: 0.95rem;
                  margin: 12px 0;
              }
    
              .testimonial-image {
                  height: 220px;
              }
    
              .carousel-btn {
                  width: 36px;
                  height: 36px;
                  font-size: 0.9rem;
              }
          }
        /* testmonial */


        /* Footer Section */
.footer-section {
    background: linear-gradient(to bottom,
            #ffffff 0%,
            /* White top */
            #ffffff 35%,
            /* Smooth white area */
            rgba(0, 120, 212, 0.25) 58%,
            /* Light Windows blue fade */
            rgba(0, 120, 212, 0.65) 75%,
            /* Stronger blue */
            #0078D4 100%
            /* Full Windows blue bottom */
        );


    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    padding: 4rem 0 2rem 0;
    position: relative;
}




        .footer-section .container {
            position: relative;
            z-index: 10;
        }

        .footer-brand {

            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1.5rem;

            gap: 8px;
        }

        .footer-brand span {
            color: #0078D4;
        }


        .footer-info {
            color: #333;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .footer-info p {
            margin-bottom: 0.75rem;
        }

        .footer-info strong {
            color: #222;
            font-weight: 600;
        }

        .footer-title {
            color: #222;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

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

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

        .footer-links a {
            color: #444;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: #222;
            padding-left: 5px;
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .copyright {
            color: #ffffff;
            margin: 0;
            font-size: 0.95rem;
        }

        .social-icons {
            display: flex;
            justify-content: flex-end;
            gap: rem;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            color: #fcfcfc !important;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.25rem;
        }

        .social-icon:hover {
            color: #1e3a5f;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .footer-brand {
                font-size: 1.5rem;
            }

            .footer-title {
                font-size: 1.1rem;
                margin-top: 1.5rem;
            }

            .social-icons {
                justify-content: center;
                margin-top: 1.5rem;
            }

            .copyright {
                text-align: center;
            }

            .footer-bottom {
                margin-top: 2rem;
                padding-top: 1.5rem;
            }
        }

        /* footer */


        /* services */

.service_section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: #1a1a1a;
}

.service_content-wrapper {
    display: grid;
    margin: 10px;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.service_steps-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service_step-card {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 100%;
}

.service_step-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #e8ecf0;
    line-height: 1;
    min-width: 80px;
    flex-shrink: 0;
}

.service_step-content {
    flex: 1;
    background-color: #f9f9f9;
    padding: 25px;
    min-width: 0;
}

.service_step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.service_step-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.service_images-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    height: 100%;
    min-height: 500px;
}

.service_image-box {
    border-radius: 16px;
    overflow: hidden;
    background: #e9ecef;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.service_image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service_image-box.service_top-left {
    grid-column: 1;
    grid-row: 1;
}

.service_image-box.service_second-box {
    grid-column: 1;
    grid-row: 2;
    position: relative;
}

.service_image-box.service_large-right {
    grid-column: 1;
    grid-row: 1;
}

.service_placeholder-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.service_job-seekers-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.service_avatar-group {
    display: flex;
    margin-right: 5px;
}

.service_avatar-group img {
    max-width: 50px;
    height: 50px;
}

.service_avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    object-fit: cover;
}

.service_avatar:first-child {
    margin-left: 0;
}

.service_badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.service_badge-number {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.9rem;
}

.service_badge-label {
    font-size: 0.7rem;
    color: #6c757d;
}

.service_clock-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 0.9rem;
    z-index: 10;
}

/* Tablet Screens */
@media (max-width: 992px) {
    .service_content-wrapper {
        grid-template-columns: 1fr;
        margin: 10px 5px;
        gap: 40px;
    }

    .service_images-column {
        min-height: 400px;
    }

    .service_step-number {
        font-size: 3rem;
        min-width: 70px;
    }
}

/* Mobile Screens */
@media (max-width: 768px) {
    .service_section-title {
        font-size: 2rem;
        padding: 0 15px;
    }

    .service_content-wrapper {
        margin: 10px 0;
        gap: 30px;
    }

    .service_step-card {
        padding: 5px;
        gap: 15px;
    }

    .service_step-number {
        font-size: 2.5rem;
        min-width: 60px;
    }

    .service_step-content {
        padding: 20px;
    }

    .service_step-title {
        font-size: 1rem;
    }

    .service_step-description {
        font-size: 0.85rem;
    }
}

/* Small Mobile Screens */
@media (max-width: 576px) {
    .service_section-title {
        font-size: 1.75rem;
        text-align: center;
        padding: 0 15px;
        margin: 0;
    }

    .service_content-wrapper {
        margin: 0;
        padding: 0 15px;
        gap: 25px;
    }

    .service_step-card {
        padding: 0;
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    /* Alternate layout for even cards */
    .service_step-card:nth-child(even) {
        flex-direction: column-reverse;
    }

    .service_step-number {
        font-size: 2.5rem;
        margin: 0 auto;
        min-width: auto;
    }

    .service_step-content {
        padding: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .service_step-title {
        font-size: 0.95rem;
    }

    .service_step-description {
        font-size: 0.8rem;
    }

    .service_images-column {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 15px;
        width: 100%;
    }

    .service_image-box {
        min-height: 250px;
        width: 100%;
        box-sizing: border-box;
    }

    .service_job-seekers-badge {
        bottom: 15px;
        left: 15px;
        padding: 6px 12px;
        gap: 8px;
    }

    .service_avatar {
        width: 24px;
        height: 24px;
    }

    .service_avatar-group img {
        max-width: 40px;
        height: 40px;
    }

    .service_badge-number {
        font-size: 0.8rem;
    }

    .service_badge-label {
        font-size: 0.65rem;
    }
}

/* Extra Small Screens */
@media (max-width: 400px) {
    .service_section-title {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .service_content-wrapper {
        margin: 0;
        padding: 0 10px;
    }

    .service_step-number {
        font-size: 1.75rem;
    }

    .service_step-content {
        padding: 12px;
    }

    .service_job-seekers-badge {
        bottom: 10px;
        left: 10px;
        padding: 5px 10px;
    }
}
        /* service */

        /* faq */
        .faq-container {
            margin-top: 70px;
            margin-bottom: 70px;
        }

        .faq-title {
            font-size: 2.5rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 2rem;
            color: #1a1a1a;
        }

        .faq-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            align-items: flex-start;
        }

        .faq-item {

            border-radius: 13px;
            padding: 24px 28px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid rgb(231, 231, 231);
            flex: 1;
            position: relative;
            min-height: auto;
        }

        .faq-item:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .faq-item.active {
            background: #e3f2fd;
            border: 1px solid #90caf9;
        }

        .faq-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 20px;
        }

        .faq-number {
            background: #f5f5f5;
            color: #666;
            border-radius: 25px;
            padding: 14px 16px;
            height: 50px;
            width: 50px;
            margin: 0 auto;
            font-weight: 600;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .faq-question {
            flex: 1;
            font-size: 1.05rem;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.5;
            margin: 0;
        }

        .faq-toggle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: transparent;
            border: none;
            color: #2196f3;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, margin-top 0.3s ease;
            color: #555;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            margin-top: 16px;
            padding-left: 56px;
        }

        .faq-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: transparent;
            border: none;
            color: #666;
            font-size: 20px;
            cursor: pointer;
            width: 24px;
            height: 24px;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .faq-item.active .faq-close {
            display: flex;
        }

        .faq-item.active .faq-toggle {
            display: none;
        }

        @media (max-width: 768px) {
            .faq-row {
                flex-direction: column;
            }

            .faq-title {
                font-size: 2rem;
            }
        }

        /* faq */

        /* about */
        .about_container {
            margin-top: 100px;
            margin-bottom: 100px;
        }
          .about_header {
            text-align: center;
            margin-bottom: 60px;
        }

        .about_header h2 {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .about_header p {
            color: #666;
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* GRID SYSTEM */
        .about_grid-wrapper {
            display: grid;
            grid-template-columns: 380px 1fr 380px;
            gap: 30px;
            align-items: center;
            justify-items: center;
            position: relative;
        }

        /* Spinner Animation - Behind all content */
        .about_spinner-wrap {
            position: absolute;
            width: 600px;
            height: 600px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 0;
        }

        .about_spinner-item {
            border: 4px solid #0078D4;
            border-radius: 50%;
            height: 100%;
            width: 100%;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%) scale(0.3);
            opacity: 0;
            animation: about_zoom 3s ease-out infinite;
        }

        .about_spinner-item--2 {
            animation-delay: 1s;
            border-color: #0078D4;
        }

        .about_spinner-item--3 {
            animation-delay: 2s;
            border-color: #0078D4;
        }

        @keyframes about_zoom {
            0% {
                transform: translate(-50%, -50%) scale(0.3);
                opacity: 0;
            }

            30% {
                opacity: 0.9;
            }

            100% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 0;
            }
        }

        /* CENTER VIDEO BOX */
        .about_center-box {
            position: relative;
            width: 100%;
            max-width: 380px;
            height: 520px;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-radius: 30px;
            overflow: visible;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            z-index: 2;
        }

        .about_center-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 30px;
            position: relative;
            z-index: 2;
        }

        .about_video-label {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.95);
            padding: 10px 24px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            color: #333;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            z-index: 10;
        }

        /* SIDE COLUMNS */
        .about_left-column,
        .about_right-column {
            display: flex;
            flex-direction: column;
            gap: 25px;
            width: 100%;
            z-index: 2;
            position: relative;
        }

        /* CARD STYLES */
        .about_card {
            background: white;
            border-radius: 20px;
            padding: 30px 25px;
    box-shadow: 0 20px 60px rgba(0, 120, 212, 0.35);
            position: relative;
        }

        .about_card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
        }

        .about_card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-radius: 12px;
            display: flex;
            margin: 0 auto;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 24px;
        }
        .about_card-icon img {
            width: 35px;
        }

        .about_card h2 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #1a1a1a;
            text-align: center;
        }

        .about_card p {
            color: #666;
            text-align: center;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .about_card-btn {
            background: #2196F3;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .about_card-btn:hover {
            background: #1976D2;
        }

        .about_card.about_compact {
            padding: 20px;
        }

        .about_card.about_compact h3 {
            font-size: 18px;
            margin-bottom: 0;
        }

        .about_card.about_compact p {
            margin-bottom: 0;
        }


        /* ----------------------------------------------------- */
        /*                    RESPONSIVE DESIGN                  */
        /* ----------------------------------------------------- */

        /* TABLETS (max-width: 1024px) */
        @media (max-width: 1024px) {
            .about_grid-wrapper {
                grid-template-columns: 1fr 1fr;
                gap: 25px;
            }

            .about_center-box {
                grid-column: 1 / -1;
                max-width: 500px;
                height: 450px;
            }

            .about_left-column {
                grid-column: 1;
            }

            .about_right-column {
                grid-column: 2;
            }


            .about_spinner-wrap {
                width: 500px;
                height: 500px;
            }
        }

        /* MOBILE (max-width: 640px) */
        @media (max-width: 640px) {
      

            .about_header h2 {
                font-size: 32px;
            }

            .about_header p {
                font-size: 14px;
            }

            .about_grid-wrapper {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .about_center-box {
                height: 400px;
                max-width: 100%;
            }

            .about_left-column,
            .about_right-column {
                grid-column: 1;
            }

            .about_card {
                padding: 25px 20px;
            }

            .about_card h3 {
                font-size: 18px;
            }

            .about_spinner-wrap {
                width: 400px;
                display: none;
                height: 400px;
            }
        }

        /* about */

           
      
        /* Section Animation */
        .section_animation {
            opacity: 0;
            transform: scale(0.95);
            transition: opacity 1s ease, transform 1s ease;
     
        }

        .section_animation.animate {
            opacity: 1;
            transform: scale(1);
        }

        /* Container Animation - Slide from Left */
        .container_animation {
            opacity: 0;
            transform: translateX(-100px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .container_animation.animate {
            opacity: 1;
            transform: translateX(0);
        }

        /* Container Animation - Slide from Right */
        .container_animation_right {
            opacity: 0;
            transform: translateX(100px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .container_animation_right.animate {
            opacity: 1;
            transform: translateX(0);
        }

        /* Container Animation - Fade Up */
        .container_animation_up {
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.9s ease, transform 0.9s ease;
        }

        .container_animation_up.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Image Animation - Zoom In */
        .image_animation {
            opacity: 0;
            transform: scale(0.8) rotate(-5deg);
            transition: opacity 1s ease, transform 1s ease;
        }

        .image_animation.animate {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }

        /* Image Animation - Slide from Bottom */
        .image_animation_slide {
            opacity: 0;
            transform: translateY(80px);
            transition: opacity 1.2s ease, transform 1.2s ease;
        }

        .image_animation_slide.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Heading Animation */
        .heading_animation {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
   
        }

        .heading_animation.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Paragraph Animation */
        .paragraph_animation {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease 0.4s, transform 1s ease 0.4s;
   
        }

        .paragraph_animation.animate {
            opacity: 1;
            transform: translateY(0);
        }

               .card_animation_zoom {
            opacity: 0;
            transform: scale(0.7);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .card_animation_zoom.animate {
            opacity: 1;
            transform: scale(1);
        }
    .card_animation_bottom {
            opacity: 0;
            transform: translateY(100px);
            transition: all 0.8s ease;
        }

        .card_animation_bottom.animate {
            opacity: 1;
            transform: translateY(0);
        }

        p {
            margin-bottom: 30px !important;
        }

                .card_animation_left {
            opacity: 0;
            transform: translateX(-100px);
            transition: all 0.8s ease;
        }

        .card_animation_left.animate {
            opacity: 1;
            transform: translateX(0);
        }

        /* Card Animation 4 - Slide from Right */
        .card_animation_right {
            opacity: 0;
            transform: translateX(100px);
            transition: all 0.8s ease;
        }

        .card_animation_right.animate {
            opacity: 1;
            transform: translateX(0);
        }