:root {
  --primary: #4361ee;
  --primary-light: #4895ef;
  --primary-dark: #3a0ca3;
  --secondary: #10b981;
  --secondary-light: #34d399;
  --accent: #f59e0b;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --card-bg: #ffffff;
  --body-bg: #f5f7fa;
  --danger: #ef4444;
  --success: #22c55e;
  --warning: #f59e0b;
  --info: #3b82f6;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.3s ease;
  --border-radius:0;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--body-bg);
  color: var(--dark);
  line-height: 1.6;
  transition: var(--transition);
}

/* Global styles */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header styles */
header {
  background-color: #f5f7fa;
  color: black;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.32rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.logo i {
  margin-right: 0.5rem;
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  margin-right: 1rem;
}

nav ul li {
  position: relative;
  margin: 0 0.25rem;
}

nav ul li a {
  color: black;
  text-decoration: none;
  /* padding: 0.75rem 1rem; */
  padding: 8px 25px;

  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  border-radius: var(--border-radius);
  font-weight: 500;
}

nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius);
  min-width: 220px;
  right: 0;
  z-index: 100;
  overflow: hidden;
  animation: fadeIn 0.2s ease-in-out;
  height: 300px;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: var(--dark);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-content a:hover {
  background-color: var(--gray-light);
}

/* Hero section */
.hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-image: url('data:image/svg+xml;charset=utf8,%3Csvg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23ffffff" fill-opacity="0.05" fill-rule="evenodd"%3E%3Cpath d="M0 40L40 0H20L0 20z"/%3E%3C/g%3E%3C/svg%3E'); */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Tool categories section */
.tools-section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.125rem;
}

/* Category styles */
.category-title {
  margin: 2.5rem 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-light);
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  position: relative;
}

.category-title i {
  color: var(--primary);
}

.category-title .view-all {
  position: absolute;
  right: 0;
  font-size: 0.875rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  background-color: rgba(67, 97, 238, 0.1);
  transition: var(--transition);
}

.category-title .view-all:hover {
  background-color: rgba(67, 97, 238, 0.2);
}

/* Tool grid and cards */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.tool-card {
  background-color: var(--card-bg);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.tool-card-header {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--gray-light);
}

.tool-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: white;
  border-radius: 12px;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.tool-card-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.tool-card-body {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tool-card-body p {
  color: var(--gray);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.tool-card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tool-tag {
  padding: 0.25rem 0.75rem;
  background-color: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Badges */
.badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 0 0.5rem;
  z-index: 10;
}

.badge-new {
  background-color: var(--primary);
}
.badge-popular {
  background-color: var(--accent);
}
.badge-trending {
  background-color: var(--success);
}


.badge-hot {
  background-color: var(--danger);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-align: center;
}
.btn-danger{
  background-color: var(--danger);
  color: white;
}
.btn-danger:hover{
  background-color: rgb(193, 18, 18);
  color: white;
}



.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-light);
}

.btn-outline {
  background-color: #3f3fd0;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background-color: #3f3fd0;

  /* background-color: rgba(255, 255, 255, 0.15); */
  border-color: white;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.footer-logo i {
  margin-right: 0.5rem;
}



.search-bar {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 2rem;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  width: 100%;
  transition: var(--transition);
  padding-left: 2.5rem;
}

.search-bar::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-bar:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.25);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
}

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Theme toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-dark);
  color: white;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.theme-toggle:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

/* Responsive design */
@media (max-width: 1024px) {
  .tool-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 920px) {
  .mobile-menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-md);
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    width: 100%;
    margin: 0.25rem 0;
  }

  nav ul li a {
    width: 100%;
    padding: 1rem;
    color: white;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.1);
    padding-left: 1rem;
  }

  .dropdown-content a {
    color: white;
  }
  

}

@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.125rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 2rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .tool-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .tool-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 6rem 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .category-title .view-all {
    display: none;
  }
}

/* Dark Mode */
.dark-mode {
  --primary: #818cf8;
  --primary-light: #a5b4fc;
  --primary-dark: #6366f1;
  --secondary: #10b981;
  --secondary-light: #34d399;
  --dark: #f8fafc;
  --light: #1e293b;
  --gray: #94a3b8;
  --gray-light: #334155;
  --card-bg: #1e293b;
  --body-bg: #0f172a;
  --accent: #f59e0b;
  --danger: #ef4444;
  --success: #22c55e;
  --warning: #f59e0b;
  --info: #3b82f6;
}

.dark-mode body {
  background-color: var(--body-bg);
  color: var(--dark);
}

.dark-mode .tool-card {
  border: 1px solid #2d3748;
  background-color: var(--card-bg);
}

.dark-mode .search-bar {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--dark);
}

.dark-mode .search-bar::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.dark-mode .search-bar:focus {
  background-color: rgba(255, 255, 255, 0.2);
}

.dark-mode .tool-tag {
  background-color: rgba(129, 140, 248, 0.2);
  color: var(--primary);
}

.dark-mode .badge {
  color: var(--light);
}

.dark-mode .badge-new {
  background-color: var(--primary);
}

.dark-mode .badge-popular {
  background-color: var(--accent);
}

.dark-mode .badge-trending {
  background-color: var(--success);
}

.dark-mode .badge-hot {
  background-color: var(--danger);
}

.dark-mode .btn {
  background-color: var(--primary);
  color: var(--light);
}

.dark-mode .btn:hover {
  background-color: var(--primary-dark);
}

.dark-mode .btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.dark-mode .btn-outline:hover {
  background-color: var(--primary);
  color: var(--light);
}

.dark-mode .footer-content {
  background-color: var(--dark);
  color: var(--light);
}

.dark-mode .footer-logo i {
  color: var(--primary);
}

.dark-mode .notify-input {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--dark);
}

.dark-mode .notify-button {
  background-color: var(--primary);
  color: var(--light);
}

.dark-mode .notify-button:hover {
  background-color: var(--primary-dark);
}

.dark-mode .tool-card {
  border: 1px solid #2d3748;
}

.dark-mode .search-bar {
  background-color: rgba(0, 0, 0, 0.2);
}

.dark-mode .search-bar:focus {
  background-color: rgba(0, 0, 0, 0.3);
}

.dark-mode .tool-tag {
  background-color: rgba(129, 140, 248, 0.2);
}

.search-input{
  padding: 20px;
  font-size: 15px;
  width: 70%;
  border-radius: 100px;
  outline: none;
  border: none;
}





.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
  text-align: center;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light);
}

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

/* Categories Section */
.categories-section {
  padding: 5rem 0;
  background-color: var(--body-bg);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.category-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.category-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: white;
  border-radius: 12px;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.category-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.category-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.category-tools {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 0.5rem;
}

.category-tools li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.category-tools li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.8rem;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: auto;
  transition: var(--transition);
}

.category-link:hover {
  gap: 0.75rem;
}

/* Why Choose Us Section */
.why-us-section {
  padding: 5rem 0;
  background-color: var(--light);
  color: var(--dark);
}

.why-us-section .section-header h2 {
  color: var(--primary-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background-color: var(--body-bg);
}

.testimonials-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 2rem 0.5rem;
  margin: 0 -0.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1.5rem);
  min-width: 280px;
  scroll-snap-align: start;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-rating {
  margin-bottom: 1.5rem;
  color: var(--warning);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  color: var(--dark);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Security Section */
.security-section {
  padding: 5rem 0;
  background-color: var(--light);
  color: var(--dark);
}

.security-section .section-header h2 {
  color: var(--primary-dark);
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.security-feature {
  display: flex;
  gap: 2rem;
  align-items: center;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.security-icon {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4361ee, #3a0ca3);
  color: white;
  border-radius: 16px;
  font-size: 1.5rem;
}

.security-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.security-content p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
}

/* Free Tools Banner */
.free-tools-banner {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.banner-text {
  flex: 1;
}

.banner-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.banner-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.banner-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.free-tools-image {
  border-radius: var(--border-radius);
  /* box-shadow: var(--shadow-lg); */
  max-width: 100%;
  height: auto;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background-color: var(--body-bg);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Dark Mode Adaptations */
.dark-mode .security-section,
.dark-mode .why-us-section {
  background-color: var(--dark);
  color: var(--light);
}

.dark-mode .author-avatar {
  border-color: var(--primary);
}

.dark-mode .why-us-section .section-header h2,
.dark-mode .security-section .section-header h2 {
  color: var (--primary-light);
}

/* Responsive Adjustments */
@media (max-width: 920px) {
  .banner-content {
    flex-direction: column;
  }
  
  .banner-image {
    justify-content: center;
  }
  
  .security-feature {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .security-icon {
    margin: 0 auto 1rem;
  }
  
  .feature-card,
  .category-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .stat-item {
    flex: 0 0 calc(50% - 1rem);
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .testimonial-card {
    flex: 0 0 calc(100% - 2rem);
  }
}

@media (max-width: 640px) {
  .stat-item {
    flex: 0 0 100%;
  }
}
.notify-form {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
  position: relative;
}

.notify-input {
  flex: 1;
  height: 60px;
  border-radius: 30px;
  padding: 0 30px;
  border: none;
  outline: none;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.notify-button {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 50px;
  padding: 0 35px;
  border-radius: 25px;
  background-color: #3424c4;
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.notify-button:hover {
  background-color: #3a0ca3;
}

.background-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .coming-soon {
      font-size: 70px;
  }
  
  .subtitle {
      font-size: 18px;
  }

  .notify-form {
      flex-direction: column;
      gap: 15px;
  }

  .notify-input {
      width: 100%;
      padding: 20px;
  }

  .notify-button {
      position: static;
      width: 100%;
      margin-top: -5px;
  }
}

.tool-hero{
  background: white !important;
  padding: 25px !important;
  border-radius: 5px !important; 
}

.tool-logo{
  width: 100px !important;
  padding-top:18px;
  margin: auto !important;
  justify-content: center !important;
  display: flex;

}
.tool-title{
  justify-content: center !important;
  display: flex;
  margin-top: 8px;
}

.copy-btn {
  background-color: #1bb55ee8;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background-color 0.2s;
}

.copy-btn:hover {
  background-color: #1b944fe8;
}
#loading-image {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 100px;
}
.social i{
  font-size: 25px;
}
.social{
  display: flex;
  gap: 15px;
}