 .time-converter-main-wrapper * {
      box-sizing: border-box !important;
      margin: 0 !important;
      padding: 0 !important;
    }

    .time-converter-main-wrapper {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
      min-height: 100vh !important;
      padding: 20px !important;
      position: relative !important;
      overflow: hidden !important;
			border-radius:15px;
    }

    .time-converter-main-wrapper::before {
      content: '' !important;
      position: absolute !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') !important;
      pointer-events: none !important;
    }

    .time-converter-container {
      max-width: 1200px !important;
      margin: 0 auto !important;
      position: relative !important;
      z-index: 1 !important;
    }

    .time-converter-header {
      text-align: center !important;
      margin-bottom: 40px !important;
      animation: fadeInDown 1s ease-out !important;
    }

/*     .time-converter-title {
      font-size: 35px!important;
      font-weight: 800 !important;
      background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4) !important;
      background-size: 300% 300% !important;
      -webkit-background-clip: text !important;
      -webkit-text-fill-color: transparent !important;
      background-clip: text !important;
      animation: gradientShift 3s ease-in-out infinite !important;
      margin-bottom: 10px !important;
      text-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
			text-transform:uppercase;
    } */

      .time-converter-title {
	font-size: 35px !important;
	font-weight: 800 !important;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4) !important;
	background-size: 300% 300% !important;
	-webkit-background-clip: text !important;
	/* -webkit-text-fill-color: transparent !important; */
	background-clip: text !important;
	animation: gradientShift 3s ease-in-out infinite !important;
	margin-bottom: 10px !important;
	text-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
	text-transform: uppercase;
	color: white;
}

    .time-converter-subtitle {
      font-size: 1.2rem !important;
      color: rgba(255,255,255,0.9) !important;
      font-weight: 300 !important;
    }

    .time-converter-main-card {
      background: rgba(255,255,255,0.95) !important;
      border-radius: 25px !important;
      padding: 40px !important;
      box-shadow: 0 20px 60px rgba(0,0,0,0.2) !important;
      backdrop-filter: blur(10px) !important;
      border: 1px solid rgba(255,255,255,0.2) !important;
      margin-bottom: 30px !important;
      animation: slideInUp 1s ease-out !important;
    }

    .time-converter-live-display {
      display: grid !important;
      grid-template-columns: 1fr 1fr !important;
      gap: 30px !important;
      margin-bottom: 40px !important;
    }

    .time-converter-timezone-card {
      background: linear-gradient(135deg, #667eea, #764ba2) !important;
      border-radius: 20px !important;
      padding: 30px !important;
      text-align: center !important;
      color: white !important;
      position: relative !important;
      overflow: hidden !important;
      transition: transform 0.3s ease !important;
    }

    .time-converter-timezone-card:hover {
      transform: translateY(-5px) !important;
    }

    .time-converter-timezone-card::before {
      content: '' !important;
      position: absolute !important;
      top: -50% !important;
      left: -50% !important;
      width: 200% !important;
      height: 200% !important;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%) !important;
      animation: rotate 10s linear infinite !important;
    }

    .time-converter-timezone-label {
      font-size: 1.1rem !important;
      font-weight: 600 !important;
      margin-bottom: 15px !important;
      opacity: 0.9 !important;
    }

    .time-converter-time-display {
      font-size: 2.5rem !important;
      font-weight: 700 !important;
      margin-bottom: 10px !important;
      font-family: 'Courier New', monospace !important;
    }

    .time-converter-date-display {
      font-size: 1rem !important;
      opacity: 0.8 !important;
    }

    .time-converter-input-section {
      background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
      border-radius: 20px !important;
      padding: 30px !important;
      margin-bottom: 30px !important;
      color: white !important;
    }

    .time-converter-input-title {
      font-size: 1.5rem !important;
      font-weight: 600 !important;
      margin-bottom: 20px !important;
      text-align: center !important;
    }

    .time-converter-input-grid {
      display: grid !important;
      grid-template-columns: 1fr 1fr 1fr !important;
      gap: 20px !important;
      margin-bottom: 20px !important;
    }

    .time-converter-input-group {
      display: flex !important;
      flex-direction: column !important;
    }

    .time-converter-input-label {
      font-size: 0.9rem !important;
      margin-bottom: 8px !important;
      font-weight: 500 !important;
    }

    .time-converter-input {
      padding: 12px 15px !important;
      border: none !important;
      border-radius: 10px !important;
      font-size: 1rem !important;
      background: rgba(255,255,255,0.2) !important;
      color: white !important;
      backdrop-filter: blur(5px) !important;
      transition: all 0.3s ease !important;
    }

    .time-converter-input::placeholder {
      color: rgba(255,255,255,0.7) !important;
    }

    .time-converter-input:focus {
      outline: none !important;
      background: rgba(255,255,255,0.3) !important;
      transform: scale(1.02) !important;
    }

    .time-converter-convert-btn {
      background: linear-gradient(45deg, #ff6b6b, #4ecdc4) !important;
      border: none !important;
      padding: 15px 40px !important;
      border-radius: 50px !important;
      color: white !important;
      font-size: 1.1rem !important;
      font-weight: 600 !important;
      cursor: pointer !important;
      transition: all 0.3s ease !important;
      display: block !important;
      margin: 0 auto !important;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
    }

    .time-converter-convert-btn:hover {
      transform: translateY(-2px) !important;
      box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
    }

    .time-converter-result-section {
      background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
      border-radius: 20px !important;
      padding: 30px !important;
      margin-bottom: 30px !important;
      color: white !important;
      text-align: center !important;
    }

    .time-converter-result-title {
      font-size: 1.3rem !important;
      margin-bottom: 15px !important;
      font-weight: 600 !important;
    }

    .time-converter-result-time {
      font-size: 2rem !important;
      font-weight: 700 !important;
      font-family: 'Courier New', monospace !important;
      margin-bottom: 10px !important;
    }

    .time-converter-world-clock {
      display: grid !important;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
      gap: 20px !important;
      margin-bottom: 30px !important;
    }

    .time-converter-clock-card {
      background: rgba(255,255,255,0.9) !important;
      border-radius: 15px !important;
      padding: 20px !important;
      text-align: center !important;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
      transition: transform 0.3s ease !important;
    }

    .time-converter-clock-card:hover {
      transform: scale(1.05) !important;
    }

    .time-converter-clock-svg {
      width: 80px !important;
      height: 80px !important;
      margin: 0 auto 15px !important;
      display: block !important;
    }

    .time-converter-clock-city {
      font-size: 1.1rem !important;
      font-weight: 600 !important;
      color: #333 !important;
      margin-bottom: 5px !important;
    }

    .time-converter-clock-time {
      font-size: 1.3rem !important;
      font-weight: 700 !important;
      color: #667eea !important;
      font-family: 'Courier New', monospace !important;
    }

    .time-converter-features-grid {
      display: grid !important;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
      gap: 20px !important;
      margin-bottom: 30px !important;
    }

    .time-converter-feature-card {
      background: rgba(255,255,255,0.9) !important;
      border-radius: 15px !important;
      padding: 25px !important;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
      transition: all 0.3s ease !important;
    }

    .time-converter-feature-card:hover {
      transform: translateY(-5px) !important;
      box-shadow: 0 15px 40px rgba(0,0,0,0.2) !important;
    }

    .time-converter-feature-title {
      font-size: 1.2rem !important;
      font-weight: 600 !important;
      color: #333 !important;
      margin-bottom: 15px !important;
    }

    .time-converter-slider {
      width: 100% !important;
      height: 8px !important;
      border-radius: 5px !important;
      background: linear-gradient(90deg, #667eea, #764ba2) !important;
      outline: none !important;
      margin: 15px 0 !important;
      cursor: pointer !important;
    }

    .time-converter-content-section {
      background: rgba(255,255,255,0.95) !important;
      border-radius: 25px !important;
      padding: 40px !important;
      margin-top: 40px !important;
      box-shadow: 0 20px 60px rgba(0,0,0,0.1) !important;
    }

    .time-converter-content-title {
      font-size: 2rem !important;
      font-weight: 700 !important;
      color: #333 !important;
      margin-bottom: 20px !important;
      text-align: center !important;
    }

    .time-converter-content-grid {
      display: grid !important;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
      gap: 30px !important;
    }

    .time-converter-content-card {
      background: linear-gradient(135deg, #667eea, #764ba2) !important;
      border-radius: 15px !important;
      padding: 25px !important;
      color: white !important;
    }

    .time-converter-content-card-title {
      font-size: 1.3rem !important;
      font-weight: 600 !important;
      margin-bottom: 15px !important;
    }

    .time-converter-content-text {
      line-height: 1.6 !important;
      opacity: 0.9 !important;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0 !important;
        transform: translateY(-30px) !important;
      }
      to {
        opacity: 1 !important;
        transform: translateY(0) !important;
      }
    }

    @keyframes slideInUp {
      from {
        opacity: 0 !important;
        transform: translateY(30px) !important;
      }
      to {
        opacity: 1 !important;
        transform: translateY(0) !important;
      }
    }

    @keyframes gradientShift {
      0%, 100% {
        background-position: 0% 50% !important;
      }
      50% {
        background-position: 100% 50% !important;
      }
    }

    @keyframes rotate {
      from {
        transform: rotate(0deg) !important;
      }
      to {
        transform: rotate(360deg) !important;
      }
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1) !important;
      }
      50% {
        transform: scale(1.05) !important;
      }
    }

   /* General Reset for Mobile */
@media (max-width: 992px) {
  .time-converter-main-wrapper {
    padding: 15px !important;
  }

  .time-converter-container {
    max-width: 100% !important;
    padding: 10px !important;
  }

  .time-converter-header {
    margin-bottom: 30px !important;
  }

  .time-converter-title {
    font-size: 2rem !important;
    text-align: center !important;
    margin-bottom: 10px !important;
  }

  .time-converter-subtitle {
    font-size: 1rem !important;
    text-align: center !important;
    margin-bottom: 20px !important;
  }

  .time-converter-main-card {
    padding: 25px !important;
    margin-bottom: 20px !important;
  }

  .time-converter-live-display {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .time-converter-timezone-card {
    padding: 20px !important;
  }

  .time-converter-timezone-label {
    font-size: 1rem !important;
  }

  .time-converter-time-display {
    font-size: 2rem !important;
  }

  .time-converter-input-section {
    padding: 20px !important;
  }

  .time-converter-input-title {
    font-size: 1.2rem !important;
    text-align: center !important;
  }

  .time-converter-input-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .time-converter-input-group {
    flex-direction: column !important;
  }

  .time-converter-input {
    padding: 10px !important;
    font-size: 0.9rem !important;
  }

  .time-converter-convert-btn {
    padding: 12px 30px !important;
    font-size: 1rem !important;
    margin-top: 20px !important;
  }

  .time-converter-result-section {
    padding: 25px !important;
  }

  .time-converter-world-clock {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .time-converter-world-clock .time-converter-clock-card {
    padding: 20px !important;
  }

  .time-converter-features-grid {
    grid-template-columns: 1fr !important;
  }

  .time-converter-feature-card {
    padding: 20px !important;
  }

  .time-converter-slider {
    width: 100% !important;
  }

  .time-converter-content-section {
    padding: 25px !important;
  }

  .time-converter-content-grid {
    grid-template-columns: 1fr !important;
  }

  .time-converter-content-card {
    padding: 20px !important;
  }
}

/* For smaller devices (600px and below) */
@media (max-width: 600px) {
  .time-converter-main-wrapper {
    padding: 10px !important;
  }

  .time-converter-container {
    padding: 10px !important;
  }

  .time-converter-header {
    margin-bottom: 20px !important;
  }

  .time-converter-title {
    font-size: 1.8rem !important;
    margin-bottom: 8px !important;
  }

  .time-converter-subtitle {
    font-size: 0.9rem !important;
  }

  .time-converter-main-card {
    padding: 20px !important;
    margin-bottom: 15px !important;
  }

  .time-converter-live-display {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .time-converter-timezone-card {
    padding: 15px !important;
  }

  .time-converter-timezone-label {
    font-size: 1rem !important;
  }

  .time-converter-time-display {
    font-size: 1.8rem !important;
  }

  .time-converter-input-section {
    padding: 18px !important;
  }

  .time-converter-input-title {
    font-size: 1.2rem !important;
    text-align: center !important;
  }

  .time-converter-input-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .time-converter-input-group {
    flex-direction: column !important;
  }

  .time-converter-input {
    padding: 10px !important;
    font-size: 0.8rem !important;
  }

  .time-converter-convert-btn {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
    margin-top: 15px !important;
  }

  .time-converter-result-section {
    padding: 15px !important;
  }

  .time-converter-world-clock {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .time-converter-world-clock .time-converter-clock-card {
    padding: 15px !important;
  }

  .time-converter-features-grid {
    grid-template-columns: 1fr !important;
  }

  .time-converter-feature-card {
    padding: 15px !important;
  }

  .time-converter-slider {
    width: 100% !important;
  }

  .time-converter-content-section {
    padding: 20px !important;
  }

  .time-converter-content-grid {
    grid-template-columns: 1fr !important;
  }

  .time-converter-content-card {
    padding: 20px !important;
  }
}

/* For very small devices (375px and below) */
@media (max-width: 375px) {
  .time-converter-main-wrapper {
    padding: 8px !important;
  }

  .time-converter-container {
    padding: 8px !important;
  }

  .time-converter-title {
    font-size: 1.5rem !important;
    margin-bottom: 5px !important;
  }

  .time-converter-subtitle {
    font-size: 0.8rem !important;
  }

  .time-converter-main-card {
    padding: 15px !important;
    margin-bottom: 10px !important;
  }

  .time-converter-live-display {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .time-converter-timezone-card {
    padding: 12px !important;
  }

  .time-converter-timezone-label {
    font-size: 0.9rem !important;
  }

  .time-converter-time-display {
    font-size: 1.6rem !important;
  }

  .time-converter-input-section {
    padding: 15px !important;
  }

  .time-converter-input-title {
    font-size: 1.2rem !important;
    text-align: center !important;
  }

  .time-converter-input-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .time-converter-input-group {
    flex-direction: column !important;
  }

  .time-converter-input {
    padding: 8px !important;
    font-size: 0.8rem !important;
  }

  .time-converter-convert-btn {
    padding: 8px 15px !important;
    font-size: 0.8rem !important;
    margin-top: 12px !important;
  }

  .time-converter-result-section {
    padding: 10px !important;
  }

  .time-converter-world-clock {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .time-converter-world-clock .time-converter-clock-card {
    padding: 12px !important;
  }

  .time-converter-features-grid {
    grid-template-columns: 1fr !important;
  }

  .time-converter-feature-card {
    padding: 12px !important;
  }

  .time-converter-slider {
    width: 100% !important;
  }

  .time-converter-content-section {
    padding: 15px !important;
  }

  .time-converter-content-grid {
    grid-template-columns: 1fr !important;
  }

  .time-converter-content-card {
    padding: 12px !important;
  }
}
