/* Reset and base styles */
:root {
    --primary: #6257e4;
    --primary-hover: #453b97;
    --primary-light: #9b87f5;
    --background: #f6f8fe;
    --text-dark: #262662;
    --text-primary: #282c67;
    --text-secondary: #555;
    --gray-border: #d6bcfa;
    --white: #fff;
    --light-hover: #eae7fd;
    --card-hover: rgba(155,135,245,0.12);
    --card-border: #e2e8f0;
    --gradient-hero-bg: linear-gradient(111.4deg, #ee7171 1%, #f6d794 58%);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }
  
  body {
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
  }
  







  /* 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 */
    
  
  
  
  










  
  /* Hero Section */
  .hero-section {
    width: 100%;
    /* background: var(--gradient-hero-bg); */
    background-color: #b3b8ff;
    padding: 3rem 1.5rem 2.5rem;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 32px 0 rgba(155,135,245,0.12);
    position: relative;
    /* overflow: hidden; */
  }
  
  @media (max-width: 800px) {
    .hero-section {
      padding: 2rem 2rem 1.25rem 2rem;
      min-height: 500px;
      width: 100vw;
    }
  }
  
  .hero-content {
    width: 100%;
    max-width: 900px;
    text-align: center;
  }
  
  .hero-title-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #9b87f5 0%, #ee7171 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
  }
  .hero-title-secondary {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
  }
  @media (max-width: 700px) {
    .hero-title-main {
      font-size: 1.7rem;
    }
    .hero-title-secondary {
      font-size: 1.2rem;
    }
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
    color: #432d47;
    max-width: 540px;
    margin: 1.24rem auto 2.1rem;
    font-weight: 500;
  }
  
  .btn-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
    justify-content: center;
  }
  
  @media (min-width: 500px) {
    .btn-group {
      flex-direction: row;
    }
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.6rem;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 1rem;
    background: none;
    border: none;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-hover);
  }
  
  .btn-outline {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
  }
  
  .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-hover);
    border-color: var(--primary-hover);
  }
  
  /* Search */
  .search-container {
    max-width: 520px;
    width: 100%;
    margin: 2.1rem auto 0.25rem;
    position: relative;
    /* padding: 0rem 2rem 0rem 2rem; */
    /* display: flex; */
  }
  
  @media (max-width: 600px) {
    .search-container { 
        max-width: 100%; 
        padding: 0rem 1.5rem 0rem 1.5rem;}
    
        .search-icon {
            padding-left: 1.5rem;
        }
    
  }
  
  .search-input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 3rem;
    border: 1.5px solid var(--gray-border);
    border-radius: 0.5rem;
    outline: none;
    font-size: 1rem;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
  }
  
  .search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(98, 87, 228, 0.10);
  }
  
  .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-light);
    
  }
  
  /* Tool Categories */
  .categories {
    padding: 2.1rem 1rem 4rem;
    max-width: 1180px;
    margin: 0 auto;
  }
  
  .category {
    margin-bottom: 2.5rem;
  }
  
  .category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
  }
  
  .tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  @media (min-width: 540px) {
    .tools-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .tools-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .tool-card {
    background-color: white;
    border: 1px solid var(--card-border);
    border-radius: 0.65rem;
    padding: 1.3rem 1.2rem;
    min-width: 0;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s;
    height: 100%;
  }
  
  .tool-card:hover {
    box-shadow: 0 10px 15px -3px rgba(155,135,245,0.15);
  }
  
  .tool-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 0.5rem;
    background-color: var(--card-hover);
    color: var(--primary);
    margin-bottom: 1rem;
  }
  
  .tool-name {
    font-size: 1.11rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.19rem;
  }
  
  .tool-description {
    font-size: 0.93rem;
    color: var(--text-secondary);
    margin-bottom: 1.15rem;
    flex-grow: 1;
  }
  
  .tool-link {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    font-weight: 500;
    padding: 0.48rem 1.12rem;
    border-radius: 0.45rem;
    margin-top: auto;
    display: inline-block;
    transition: all 0.18s;
    font-size: 0.98rem;
    background: none;
  }
  .tool-link:hover {
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
  }
  
  .no-results {
    text-align: center;
    color: #9ca3af;
    font-size: 1.145rem;
    padding: 3rem 0;
    grid-column: 1 / -1;
  }
  
  .icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
  }
  

  
  /* Responsive tweaks */
  @media (max-width:420px) {
    .hero-section { padding:1.1rem 0.2rem; min-height:unset;}
    .hero-content{padding:0;}
    /* .features-container{margin:0rem 1rem;
    } */
  }




  .features-container {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    /* margin:0rem 1.2rem; */
  }

h1 {
    color: #2d3436;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-left: 1.2rem;
    margin-right: 1.2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-height: 280px;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.feature-title {
    color: #2d3436;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-description {
    color: #636e72;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Security badge special styling */
.feature-card:nth-child(5) .feature-icon {
    color: #2ecc71;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    body {
        padding: 0rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .feature-card {
        min-height: auto;
        padding: 1.5rem;
    }
}
  





/* 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;
    max-width: 1200px;
    margin: 0 auto; 
    padding-top: 2rem;

  }
  
  .footer-column {
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .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;
    align-items: center
  
  }
  
  .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;
    text-align: center;
  }
  
  @media (min-width: 640px) {

    /* 
      flex-direction: row;
      justify-content: space-between;
      padding: 0rem 1.2rem 0rem 1.2rem;
      align-items: center;
    } */

    .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) */

  
   /* 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);
  }