
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.5;
  }
  
  
  /* :root {
    --primary: #6e59a5;
    --primary-dark: #5d4a8e;
    --primary-light: #8b5cf6;
    --red: #e11d48;
    --gray-700: #374151;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.15);
  } */
  
  .container {
    max-width: 1280px;
    margin: 0px;
    /* padding: 5rem 10rem 1rem 10rem; */
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  .hidden {
    display: none !important;
  }
  
  
  
  
  
  /* Base styles */
  :root {
    --primary: #3b82f6;
    --primary-foreground: #ffffff;
    --secondary: #f1f5f9;
    --secondary-foreground: #1e293b;
    --background: #ffffff;
    --foreground: #0f172a;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --accent: #f8fafc;
    --accent-foreground: #0f172a;
    --border: #e2e8f0;
    --input: #e2e8f0;
    --ring: #3b82f6;
    --radius: 0.5rem;
    
    --blue-600: #2563eb;
    --green-600: #16a34a;
    --purple-600: #9333ea;
    --orange-500: #f97316;
    --red-600: #dc2626;
    --indigo-600: #4f46e5;
    --teal-600: #0d9488;
    --pink-600: #db2777;
    --yellow-500: #eab308;
  }
  
  
  
  /* Container */
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
  }
  
  @media (min-width: 640px) {
    .container {
      padding: 0 1.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .container {
      padding: 0 2rem;
    }
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
  }
  
  .text-center {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  
  .text-primary {
    color: var(--primary);
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 500;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
  }
  
  .btn svg {
    margin-left: 0.5rem;
    height: 1rem;
    width: 1rem;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
  }
  
  .btn-primary:hover {
    background-color: #2563eb;
  }
  
  .btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
  }
  
  .btn-outline:hover {
    background-color: var(--muted);
  }
  
  .btn-white {
    background-color: white;
    color: var(--primary);
  }
  
  .btn-white:hover {
    background-color: #f8fafc;
  }
  
  .btn-outline-white {
    background-color: transparent;
    border: 1px solid white;
    color: white;
  }
  
  .btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .full-width {
    width: 100%;
  }
  
  
    /* End Base styles */
  
  
  























  
   /* Start header section styling */

.containerr {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.hidden {
  display: none !important;
}

/* Header Styles */
.header {

  position: relative;
  z-index: 1001;

  top: 0;
  width: 100%;
  /* z-index: 50; */
  padding-top: 30px;
  background-color: #fff;
}

.header-main {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
  height: 64px;
}

.accent-line {
  height: 4px;
  width: 100%;
  background-color: red;
  z-index: 52;
}

/* Logo */
.logo a {
  display: flex;
  align-items: center; 
}

.logo-img {
  width: 150px;         
  height: auto;         
  max-width: 100%;      
  display: block;       
  object-fit: contain; 
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  color: var(--gray-700);
  transition: color 0.2s;
  padding: 0.5rem 1rem;
  font-weight: 500;
}


/* Dropdown Button */
.dropdown {
  position: relative;
}

.dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  color: var(--gray-700);
  font-size: 1rem;
  transition: color 0.2s;
}

.dropdown-btn:hover {
  color: var(--primary);
}

.dropdown-btn .icon {
  margin-right: 0.5rem;
}

.dropdown-btn .arrow-icon {
  margin-left: 0.25rem;
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.dropdown-btn.active .arrow-icon {
  transform: rotate(-180deg);
}

/* Dropdown Content */
.dropdown-content {
  position: absolute;
  top: 100%;
  left: -650px;
  margin-top: 4px;
  width: 100vw;
  max-width: 1024px;
  background-color: var(--white);
  border-radius: 0 0 0.5rem 0.5rem;
  /* box-shadow: 9px 5px 1px 4px rgba(35, 13, 13, 0.15); */
  box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.919);

  padding: 1.5rem 2rem;
  display: none;
  z-index: 50;
  border: 1px solid var(--gray-100);
  background-color: #fff;
}

.dropdown-content.show {
  display: block;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.dropdown-category h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.dropdown-category ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dropdown-category a {
  display: flex;
  align-items: center;
  color: var(--gray-700);
  transition: color 0.2s;
}

.dropdown-category a:hover {
  color: rgb(30, 29, 29);
  font-weight: 700;
}

/* Tool Icons */
.tool-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--white);
  margin-right: 0.75rem;
  font-weight: 500;
}

.pdf-icon { background-color: #ef4444 !important;}
.img-icon { background-color: #f97316 !important; }
.png-icon { background-color: #22c55e !important; }
.jpg-icon { background-color: #3b82f6 !important; }
.vid-icon { background-color: #a855f7 !important; }
.zip-icon { background-color: #ec4899 !important; }
.zip2-icon { background-color: #6366f1 !important; }
.zip3-icon { background-color: #63ecf1 !important; }
.zip4-icon { background-color: #eacf24 !important; }







/* Button Styles */
.see-all-wrapper {
display: inline-block;
margin: 1rem 0;
}

.see-all-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 0.75rem 1.5rem;
font-size: 1rem;
font-weight: 600;
color: var(--white);
background-color: var(--primary);
border: none;
border-radius: 0.375rem;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
text-decoration: none; /* Important for links */
}

.see-all-btn:hover {
background-color: var(--primary-dark);
transform: translateY(-1px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.see-all-btn:active {
transform: translateY(0);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.see-all-btn .fa-solid {
font-size: 0.875rem;
transition: transform 0.2s ease;
}

.see-all-btn:hover .fa-solid {
transform: translate(2px, -2px);
}





/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gray-700);
  cursor: pointer;
  font-size: 1.5rem;
}

.mobile-menu-btn:hover {
  color: var(--primary);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 0;
  box-shadow: var(--shadow);
}

.mobile-nav.show {
  display: block;
}

.mobile-nav .containerr {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;


}

.mobile-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: var(--gray-700);
  cursor: pointer;
}

.mobile-dropdown-btn .btn-content {
  display: flex;
  align-items: center;
}

.mobile-dropdown-btn .icon {
  margin-right: 0.5rem;
}

.mobile-dropdown-btn .arrow-icon {
  transition: transform 0.2s ease;
}

.mobile-dropdown-btn.active .arrow-icon {
  transform: rotate(-180deg);
}

.mobile-dropdown-content {
  width: 100%;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.mobile-category {
  margin-bottom: 1.5rem;
  z-index: 50;
}

.mobile-category h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.mobile-category ul {
  padding-left: 0.5rem;
}

.mobile-category li {
  margin-bottom: 0.75rem;
}

.mobile-category a {
  display: flex;
  align-items: center;
  color: var(--gray-700);
}

.mobile-nav-item {
  display: block;
  padding: 0.5rem 0;
  color: var(--gray-700);
}

.mobile-category .tool-icon {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.7rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
  
  .dropdown-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }
}


/* End  header section styling */
  






















      
      /* Start hero section styling */
  
  .hero-section {
      width: 100%;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f8faff;
      padding: 2rem;
      margin-top: -5rem;
  }
  
  .hero-content {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
  }
  
  h1 {
      font-size: 3.2rem;
      color: #1a237e;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      font-weight: 800;
  }
  
  .subtitle {
      font-size: 1.5rem;
      color: #4a5568;
      margin-bottom: 3rem;
      font-weight: 400;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
  }
  
  .cta-container {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      margin-top: 3rem;
  }
  
  .cta-button {
      padding: 1.2rem 2.5rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
  }
  
  .primary-cta {
      background: #4f46e5;
      color: white;
      box-shadow: 0 4px 6px rgba(79, 70, 229, 0.1);
  }
  
  .secondary-cta {
      background: white;
      color: #4f46e5;
      border: 2px solid #4f46e5;
  }
  
  .primary-cta:hover {
      transform: translateY(-2px);
      box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.919);
  
  }
  
  .secondary-cta:hover {
      background: #f0f2ff;
      box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.919);
  
  }
  
     /* Hero section responsive */
  
  @media (max-width: 768px) {
      h1 {
          font-size: 2.5rem;
      }
      
      .subtitle {
          font-size: 1.2rem;
      }
      
      .cta-container {
          flex-direction: column;
          gap: 1rem;
      }
      
      .cta-button {
          width: 100%;
          max-width: 300px;
          margin: 0 auto;
      }
  }
  
  @media (max-width: 480px) {
      h1 {
          font-size: 2rem;
      }
      
      .subtitle {
          font-size: 1rem;
      }
  }
  
     /* End Hero section */
  
  
  
    
    /* Tools Section */
    .tools-section {
      padding: 4rem 0;
      background-color: var(--secondary);
    }
    
    .section-title {
      font-size: 2rem;
      font-weight: 800;
      color: var(--foreground);
      margin-bottom: 1rem;
    }
    
    .section-description {
      font-size: 1.125rem;
      color: var(--muted-foreground);
      max-width: 36rem;
      margin: 0 auto;
    }
    
    .tools-category {
      margin-top: 3rem;
    }
    
    .category-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }
    
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(1, minmax(0, 1fr));
      gap: 2rem;
    }
    
    .tool-card {
      background-color: white;
      border-radius: var(--radius);
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .tool-card:hover {
      transform: translateY(-4px);
      box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.919);
    }
    
    .tool-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.5rem;
      color: white;
    }
    
    .tool-icon {
      background-color: white;
      border-radius: 9999px;
      padding: 0.5rem;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    
    .tool-title {
      color: white;
      font-size: 1.25rem;
      font-weight: 700;
    }
    
    .tool-content {
      padding: 1.5rem 1.5rem 0;
    }
    
    .tool-description {
      color: var(--muted-foreground);
      font-size: 0.875rem;
    }
    
    .tool-footer {
      padding: 1.5rem;
    }
    
    .tool-button {
      background: none;
      border: none;
      color: var(--primary);
      font-weight: 500;
      font-size: 0.875rem;
      cursor: pointer;
      padding: 0;
      display: flex;
      align-items: center;
      transition: color 0.2s;
      cursor: pointer;
    }
    
    .tool-button:hover {
      color: #2563eb;
    }

    .tool-button-link {
      text-decoration: none; 
      display: inline-block;
    }
    
    .tool-button svg {
      margin-left: 0.5rem;
      width: 1rem;
      height: 1rem;
    }
    
    /* Background colors from Tailwind */
    .bg-blue-600 {
      background-color: var(--blue-600);
    }
    
    .bg-green-600 {
      background-color: var(--green-600);
    }
    
    .bg-purple-600 {
      background-color: var(--purple-600);
    }
    
    .bg-orange-500 {
      background-color: var(--orange-500);
    }
    
    .bg-red-600 {
      background-color: var(--red-600);
    }

    .bg-yellow-600{
      background-color: #f9912a;
    }

    .bg-tealar-600{
      background-color: #071e6f;
    }

    .bg-pink1-600 {
      background-color: #5c0b56;
    }

    .bg-pink2-600 {
      background-color: #065a20;
    }
    
    .bg-indigo-600 {
      background-color: var(--indigo-600);
    }
    
    .bg-teal-600 {
      background-color: var(--teal-600);
    }
    
    .bg-pink-600 {
      background-color: var(--pink-600);
    }
    
    @media (min-width: 640px) {
      .tools-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    
    @media (min-width: 1024px) {
      .tools-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }
    
    /* Features Section */
    .features-section {
      padding: 4rem 0;
      background-color: white;
    }
    
    .features-grid {
      margin-top: 2.5rem;
      display: grid;
      grid-template-columns: repeat(1, minmax(0, 1fr));
      gap: 2.5rem;
    }
    
    .feature-item {
      transition: transform 0.3s;
    }
    
    .feature-item:hover {
      transform: translateY(-5px);
    }
    
    .feature-icon-container {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
      transition: transform 0.3s;
    }
    
    .feature-item:hover .feature-icon-container {
      transform: translateY(-2px);
    }
    
    .feature-title {
      margin-left: 0.75rem;
      font-size: 1.25rem;
      font-weight: 500;
    }
    
    .feature-description {
      margin-left: 2.75rem;
      color: var(--muted-foreground);
      text-align: left;
    }
    
    /* Text colors for icons */
    .text-yellow-500 {
      color: var(--yellow-500);
    }
    
    .text-green-600 {
      color: var(--green-600);
    }
    
    .text-blue-600 {
      color: var(--blue-600);
    }
    
    .text-purple-600 {
      color: var(--purple-600);
    }
    
    .text-red-600 {
      color: var(--red-600);
    }
    
    .text-orange-500 {
      color: var(--orange-500);
    }
    
    .text-indigo-600 {
      color: var(--indigo-600);
    }
    
    .text-teal-600 {
      color: var(--teal-600);
    }
    
    .text-pink-600 {
      color: var(--pink-600);
    }
    
    @media (min-width: 640px) {
      .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    
    @media (min-width: 1024px) {
      .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }
    
    /* CTA Section */
    .cta-section {
      background-color: var(--primary);
      color: white;
    }
  
  
    .cta-section-footer{
      background-color: #7777ec;
    }
  
    .btn-outline-white{
      font-size: 1.2rem;
    }
    
    .btn-white{
      font-size: 1.2rem;
    }
  
    .cta-content {
  
      padding: 7rem 0;
      display: grid;
      flex-direction: column;
      align-items: center;
      gap: 3rem;
    }
    
    .cta-title {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    
    .cta-title span {
      display: block;
    }
    
    .cta-subtitle {
      color: #ffffff;
      text-align: center;
  
    }
    
    .cta-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 2rem;
      justify-content: center;
      
    }
  
  
    .btn-white:hover{
      box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.919);
    }
  
    .btn-outline-white:hover{
      box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.919);
  
    }
   
    
    @media (min-width: 768px) {
      .cta-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }
      
      .cta-title {
        margin-bottom: 0;
      }
      
      .cta-buttons {
        flex-direction: row;
        margin-top: 0;
      }
    }
    
  

















  
  /* Modern Footer (New Design) */

.modern-footer {
  background-color: #1f2937;
  color: #d1d5db;
  padding: 2rem 0rem  2rem 0rem;
  position: relative;

}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-about-text {
  color: #9ca3af;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.subscribe-input {
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  color: #ffffff;
  font-size: 0.95rem;
  width: 100%;
  outline: none;
  transition: border-color 0.3s ease;
}

.subscribe-input:focus {
  border-color: rgba(255, 255, 255, 0.3);
}

.subscribe-input::placeholder {
  color: #9ca3af;
}

.subscribe-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #6366f1;
  color: #ffffff;
  font-weight: 500;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-button:hover {
  background-color: #4f46e5;
}

.footer-divider {
  height: 1px;
  background-color: rgba(209, 199, 199, 0.1);
  margin: 2rem 0;
}

.copyright {
  align-items: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .subscribe-form {
    flex-direction: row;
  }
  
  .subscribe-input {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .subscribe-form {
    flex-direction: column;
  }
}

/* End Modern Footer (New Design) */












    /* Utility classes */
    .hidden {
      display: none;
    }
  
  /* CSS */
  .back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2563eb; /* Your theme color */
    color: white;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
  }
  
  .back-to-top.show {
    opacity: 1;
    visibility: visible;
  }
  
  .back-to-top:hover {
    background-color: #1d4ed8; /* Darker shade of theme color */
    transform: scale(1.1);
  }