/* Global styles */
:root {
    --primary: #5e43ff;
    --primary-hover: #4933cc;
    --success: #10b981;
    --success-hover: #059669;
    --danger: #ef4444;
    --danger-hover: #dc2626;
    --text-primary: #1d2b65;
    --text-secondary: #6b7280;
    --bg-light: #f8f9fc;
    --border-color: #e5e7eb;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #333;
    line-height: 1.5;
    font-size: 16px;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .hidden {
    display: none !important;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    line-height: 1.5;
    border: none;
  }
  
  .btn-full {
    width: 100%;
  }
  
  .btn .icon {
    margin-right: 0.5rem;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: white;
  }
  
  .btn-primary:hover {
    background-color: var(--primary-hover);
  }
  
  .btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: #333;
  }
  
  .btn-outline:hover {
    background-color: #f5f5f5;
  }
  
  .btn-success {
    background-color: var(--success);
    color: white;
  }
  
  .btn-success:hover {
    background-color: var(--success-hover);
  }
  
  .btn-danger {
    background-color: transparent;
    color: var(--danger);
    border: 1px solid var(--border-color);
  }
  
  .btn-danger:hover {
    background-color: #f5f5f5;
    color: var(--danger-hover);
  }
  
  .btn-white {
    background-color: white;
    color: var(--primary);
  }
  
  .btn-white:hover {
    background-color: #f5f5f5;
  }
  
  .btn-outline-white {
    background-color: transparent;
    border: 1px solid white;
    color: white;
  }
  
  .btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  /* Form elements */
  .input, .select {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    background-color: white;
  }
  
  .input:focus, .select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(94, 67, 255, 0.2);
  }
  
  /* Range slider styling */
  input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e5e7eb;
    outline: none;
  }
  
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
  }
  
  input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
  }
  

















    /* 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 {
    background-color: var(--bg-light);
    padding: 5rem 0;
    text-align: center;
  }
  
  .hero-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-subtitle {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 36rem;
    margin: 0 auto 2rem;
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  /* Tool section */
  .tool-section {
    padding: 4rem 0;
    background-color: white;
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  
  /* Upload container */
  .upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 0.5rem;
    padding: 3rem 1rem;
    text-align: center;
    max-width: 36rem;
    margin: 0 auto;
    transition: border-color 0.3s, background-color 0.3s;
    cursor: pointer;
  }
  
  .upload-area:hover {
    border-color: var(--primary);
    background-color: rgba(94, 67, 255, 0.05);
  }
  
  .upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .upload-icon {
    background-color: rgba(94, 67, 255, 0.1);
    color: var(--primary);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .upload-content h3 {
    font-size: 1.25rem;
  }
  
  .upload-content p {
    color: var(--text-secondary);
    max-width: 24rem;
    margin: 0 auto;
  }
  
  .file-limits {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.5rem;
  }
  
  /* Editor container */
  .editor-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  @media (min-width: 1024px) {
    .editor-container {
      grid-template-columns: 2fr 1fr;
    }
  }
  
  /* Image container */
  .image-container {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #F5F5F5;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .loading-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 10;
  }
  
  .animate-spin {
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  .relative-container {
    position: relative;
  }
  
  #source-image {
    max-width: 100%;
    max-height: 500px;
  }
  
  /* Crop area */
  .crop-area {
    position: absolute;
    cursor: move;
    border: 2px solid #1EAEDB;
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .resize-handle {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: white;
    border: 2px solid #1EAEDB;
    border-radius: 50%;
  }
  
  .resize-handle.nw {
    top: -5px;
    left: -5px;
    cursor: nw-resize;
  }
  
  .resize-handle.ne {
    top: -5px;
    right: -5px;
    cursor: ne-resize;
  }
  
  .resize-handle.sw {
    bottom: -5px;
    left: -5px;
    cursor: sw-resize;
  }
  
  .resize-handle.se {
    bottom: -5px;
    right: -5px;
    cursor: se-resize;
  }
  
  .grid-line {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.4);
  }
  
  .horizontal-1 {
    width: 100%;
    height: 1px;
    top: 33.33%;
  }
  
  .horizontal-2 {
    width: 100%;
    height: 1px;
    top: 66.66%;
  }
  
  .vertical-1 {
    height: 100%;
    width: 1px;
    left: 33.33%;
  }
  
  .vertical-2 {
    height: 100%;
    width: 1px;
    left: 66.66%;
  }
  
  /* Controls container */
  .controls-container {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
  }
  
  .control-title {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
  
  .control-group {
    margin-bottom: 1.5rem;
  }
  
  .control-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  
  .control-input {
    margin-bottom: 0.5rem;
  }
  
  .quality-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
  }
  
  .action-buttons {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  /* Preview container */
  .preview-container {
    margin-bottom: 1.5rem;
  }
  
  .preview-box {
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    background-color: white;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #preview-image {
    max-width: 100%;
    max-height: 150px;
  }
  
  /* Result options */
  .result-options {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .result-preview {
    flex: 1;
    border-radius: 0.375rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  #result-image {
    max-width: 100%;
  }
  
  /* Features section */
  .features-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
  }
  
  .section-description {
    text-align: center;
    color: var(--text-secondary);
    max-width: 36rem;
    margin: 0 auto 3rem;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  
  @media (min-width: 640px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .features-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .feature-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.2s;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
  }
  
  .feature-card.blue {
    border-top: 4px solid #3b82f6;
  }
  
  .feature-card.green {
    border-top: 4px solid #10b981;
  }
  
  .feature-card.purple {
    border-top: 4px solid #8b5cf6;
  }
  
  .feature-card.orange {
    border-top: 4px solid #f97316;
  }
  
  .feature-icon {
    background-color: #f3f4f6;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }
  
  .feature-card.blue .feature-icon {
    color: #3b82f6;
  }
  
  .feature-card.green .feature-icon {
    color: #10b981;
  }
  
  .feature-card.purple .feature-icon {
    color: #8b5cf6;
  }
  
  .feature-card.orange .feature-icon {
    color: #f97316;
  }
  
  .feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .feature-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
  }
  
  /* Why Choose Us section */
  .why-section {
    padding: 4rem 0;
    background-color: white;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  
  @media (min-width: 640px) {
    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .benefits-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid black;
    padding: 10px;
    border-radius: 5px;
  }
  
  .benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .benefit-icon.yellow {
    background-color: #fef3c7;
    color: #f59e0b;
  }
  
  .benefit-icon.teal {
    background-color: #e0f2f1;
    color: #14b8a6;
  }
  
  .benefit-icon.blue {
    background-color: #e0f7ff;
    color: #0ea5e9;
  }
  
  .benefit-icon.purple {
    background-color: #f3e8ff;
    color: #8b5cf6;
  }
  
  .benefit-icon.pink {
    background-color: #fce7f3;
    color: #ec4899;
  }
  
  .benefit-icon.amber {
    background-color: #fffbeb;
    color: #f59e0b;
  }
  
  .benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  
  .benefit-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
  }
  
  /* FAQ section */
  .faq-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
  }
  
  .faq-list {
    max-width: 48rem;
    margin: 0 auto;
  }
  
  .faq-item {
    border-bottom: 1px solid var(--border-color);
  }
  
  .faq-question {
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
  }
  
  .faq-question svg {
    transition: transform 0.2s;
  }
  
  .faq-question.active svg {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    padding: 0 0 1.5rem;
  }
  
  .faq-answer p {
    color: var(--text-secondary);
  }
  
  /* CTA section */
  .cta-section {
    background-color: var(--primary);
    color: white;
    padding: 4rem 0;
    text-align: center;
  }
  
  .cta-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  

































  /* Modern Footer (New Design) */

  .modern-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 4rem 0 2rem;
  }
  
  .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(255, 255, 255, 0.1);
    margin: 2rem 0;
  }
  
  .copyright {
    text-align: 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) */







/* CSS back to top*/
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2563eb; 
  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);
}

























  /* Toast styling */
  .toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 50;
  }
  
  .toast {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    box-shadow: var(--shadow);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-width: 350px;
    display: flex;
    align-items: center;
  }
  
  .toast.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .toast-success {
    background-color: var(--success);
    color: white;
  }
  
  .toast-error {
    background-color: var(--danger);
    color: white;
  }
  
  .toast-info {
    background-color: #3b82f6;
    color: white;
  }





  /* Custom cursor styles */
.cursor-nw-resize { cursor: nw-resize; }
.cursor-ne-resize { cursor: ne-resize; }
.cursor-sw-resize { cursor: sw-resize; }
.cursor-se-resize { cursor: se-resize; }
.cursor-move { cursor: move; }



/* Utility classes */
.hidden {
    display: none !important;
  }