.elementor-4016 .elementor-element.elementor-element-4ae0236{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;}.elementor-4016 .elementor-element.elementor-element-4ae0236.e-con{--flex-grow:0;--flex-shrink:0;}@media(max-width:767px){.elementor-4016 .elementor-element.elementor-element-4ae0236{--width:100%;}}@media(min-width:768px){.elementor-4016 .elementor-element.elementor-element-4ae0236{--width:78.753%;}}/* Start custom CSS for html, class: .elementor-element-ccc86eb *//* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f8f7ff 0%, #ffffff 50%, #f5f3ff 100%);
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

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

/* Hero Section */
.hero-section {
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  width: 100%;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem); 
  font-weight: 700;
  color: #2d1b69;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-title .highlight {
  color: #7748CC;
  background: linear-gradient(135deg, #7748CC, #9d7bda);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Search Bar */
.search-container {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 20px 40px rgba(119, 72, 204, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 950px;
  margin: 0 auto;
}

.search-row {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.input-group {
  position: relative;
  flex: 1;
  min-width: 250px;
}

.input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #7748CC;
  font-size: 1.1rem;
  z-index: 2;
}

.search-input {
  width: 100%;
  padding: 15px 45px 15px 20px;
  border: 2px solid rgba(119, 72, 204, 0.2);
  border-radius: 12px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #7748CC;
  background: white;
  box-shadow: 0 0 0 3px rgba(119, 72, 204, 0.1);
}

.search-button {
  background: linear-gradient(135deg, #7748CC, #9d7bda);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-width: 180px;
}

.search-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(119, 72, 204, 0.3);
}

/* Toggle Switch Styles */
.toggle-container {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  
}

.switch {
  position: relative;
  display: inline-block;
  width: 53px;
  height: 29px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background: linear-gradient(135deg, #7748CC, #9d7bda);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.toggle-label {
  font-size: 1.rem;
  font-weight: 600;
  color: #7748CC;
  font-family: "Poppins", sans-serif;
}

.shield-icon {
  color: #7748CC;
  font-size: 18px;
}

.outline-style {
  color: transparent;
  -webkit-text-stroke: 1.8px #7748CC;
}

/* Results Section */
.results-section {
  padding: 40px 0;
}

.results-header {
  margin-bottom: 30px;
}

.results-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #2d1b69;
  margin-bottom: 10px;
}

.highlight {
  color: #7748CC;
  font-weight: 700;
}

.results-count {
  color: #666;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

/* Loading Spinner */
.loading-container {
  text-align: center;
  padding: 60px 20px;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(119, 72, 204, 0.2);
  border-left: 4px solid #7748CC;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

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

/* Cards Grid */
.cdc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(119, 72, 204, 0.1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(119, 72, 204, 0.15);
}

.card-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, rgba(119, 72, 204, 0.1), rgba(157, 123, 218, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(119, 72, 204, 0.4);
  position: relative;
}

.card-content {
  padding: 20px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d1b69;
  line-height: 1.3;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-title a:hover {
  color: #7748CC;
}

.rating-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.star {
  color: #ffd700;
  font-size: 1rem;
}

.rating-text {
  font-weight: 600;
  color: #333;
}

.card-info {
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #666;
  font-size: 0.9rem;
}

.info-icon {
  color: #7748CC;
  margin-right: 10px;
  width: 18px;
  font-size: 1rem;
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
  flex: 1;
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline {
  background: white;
  color: #7748CC;
  border: 2px solid #7748CC;
}

.btn-outline:hover {
  background: #7748CC;
  color: white;
}

.btn-primary {
  background: linear-gradient(135deg, #7748CC, #9d7bda);
  color: white;
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(119, 72, 204, 0.3);
}

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

.btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.empty-title {
  font-size: 1.5rem;
  color: #2d1b69;
  margin-bottom: 10px;
}

.empty-text {
  color: #666;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }
  
  .search-container {
    padding: 20px;
  }
  
  .search-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .input-group {
    width: 100%;
  }
  
  .search-button {
    width: 100%;
  }
  
  .card-actions .btn {
    width: 100%;
  }
  .toggle-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 30px 0;
  }
  
  .search-container {
    padding: 15px;
    border-radius: 15px;
  }
  
  .search-input {
    padding: 12px 40px 12px 15px;
  }
  
  .cdc-cards {
    grid-template-columns: 1fr;
  }
  
  .card {
    max-width: 100%;
  }
  
  .card-content {
    padding: 15px;
  }
  
  .toggle-container {
    flex-direction: column;
    align-items: center;
  }
  
  .toggle-label {
    order: -1;
  }
}

/* Utility Classes */
.hidden {
  display: none;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}/* End custom CSS */