/* Base Styles */
:root {
    --primary: #4E80EE;
    --primary-dark: #3A70E3;
    --primary-light: #E0EFFF;
    --primary-very-light: #F0F7FF;
    --secondary: #6E59A5;
    --accent-blue: #3A70E3;
    --accent-green: #34D399;
    --accent-amber: #F59E0B;
    --accent-purple: #8B5CF6;
    --background: #FFFFFF;
    --foreground: #333333;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --error: #EF4444;
    --success: #10B981;
    --warning: #F59E0B;
    --info: #3B82F6;
    --radius: 0.5rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  /* Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--foreground);
    background-color: var(--gray-50);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  ul {
    list-style: none;
  }
  
  button, input, select {
    font: inherit;
  }
  
  /* Layout */
  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  








   /* 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 {
    background: linear-gradient(to bottom, var(--primary-very-light), white);
    padding: 4rem 1rem;
    text-align: center;
  }
  
  .hero-content {
    max-width: 48rem;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-800);
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  @media (min-width: 768px) {
    .hero-title {
      font-size: 3rem;
    }
    
    .hero-subtitle {
      font-size: 1.25rem;
    }
  }
  
  /* Upload Zone */
  .upload-section {
    padding: 2rem 1rem 4rem;
  }
  
  .upload-area {
    background-color: var(--primary-very-light);
    border: 2px dashed var(--primary);
    border-radius: var(--radius);
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 32rem;
    margin: 0 auto;
  }
  
  .upload-area:hover, .upload-area.drag-active {
    background-color: var(--primary-light);
    border-color: var(--primary-dark);
  }
  
  .upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .upload-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary-very-light);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .upload-area.drag-active .upload-icon {
    background-color: var(--primary-light);
  }
  
  .upload-icon .icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
  }
  
  .upload-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
  }
  
  .upload-subtitle {
    color: var(--gray-500);
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }
  
  /* Alert */
  .alert {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .alert-error {
    background-color: #FEE2E2;
    border: 1px solid #FCA5A5;
    color: #B91C1C;
  }
  
  /* Resize Interface */
  .resize-interface {
    padding: 2rem 0 4rem;
  }
  
  .resize-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  @media (min-width: 1024px) {
    .resize-grid {
      grid-template-columns: 3fr 2fr;
    }
  }
  
  /* Image Preview */
  .image-preview-container {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    background-color: white;
    padding: 0.75rem;
    box-shadow: var(--shadow-sm);
  }
  
  .preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
  }
  
  .preview-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
  }
  
  .image-preview {
    background-color: var(--gray-100);
    border-radius: 0.375rem;
    padding: 0.5rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .preview-img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
  }
  
  .dimension-badge {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--gray-700);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: monospace;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
  }
  
  /* Image Info */
  .image-info {
    margin-top: 2rem;
  }
  
  .info-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    background-color: white;
    box-shadow: var(--shadow-sm);
  }
  
  .info-content {
    padding: 1rem;
  }
  
  .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .info-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
  }
  
  .info-list {
    gap: 0.25rem;
  }
  
  .info-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
  
  .info-value {
    font-weight: 500;
  }
  
  .separator {
    height: 1px;
    background-color: var(--gray-200);
    margin: 0.75rem 0;
  }
  
  .size-reduction {
    padding-top: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .reduction-value {
    color: var(--success);
  }
  
  .reduction-value.no-reduction {
    color: var(--gray-600);
  }
  
  /* Control Cards */
  .control-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    background-color: white;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
  }
  
  .card-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
  }
  
  /* Resize Tabs */
  .resize-tabs {
    padding: 1.5rem;
  }
  
  .tabs-list {
    display: inline-flex;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-100);
    padding: 0.25rem;
    border-radius: 0.375rem;
    width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .tab-item {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .tab-item.active {
    background-color: white;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
  }
  
  .tab-content {
    margin-top: 1rem;
  }
  
  /* Dimensions Controls */
  .dimensions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .input-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
  }
  
  .input-field {
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    transition: border-color 0.2s;
  }
  
  .input-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
  }
  
  .aspect-ratio-lock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0 1.25rem;
  }
  
  .checkbox-label {
    font-size: 0.875rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
  }
  
  .icon-tiny {
    width: 0.875rem;
    height: 0.875rem;
    margin-left: 0.25rem;
  }
  
  .icon-tiny.lock {
    color: var(--primary);
  }
  
  /* Presets */
  .presets-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
  }
  
  .ratio-badges, .percentage-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  
  .badge {
    border: 1px solid var(--gray-200);
    background-color: white;
    color: var(--gray-700);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .badge:hover {
    background-color: var(--primary-very-light);
    color: var(--primary);
  }
  
  /* Dropdown */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 14rem;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    z-index: 10;
    padding: 0.25rem;
    box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.919);

  }
  
  .dropdown-content a {
    color: var(--gray-700);
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    /* display: block; */
    font-size: 0.875rem;
    border-radius: 0.25rem;
  }
  
  .dropdown-content a:hover {
    background-color: var(--gray-100);
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
  
  /* Percentage Controls */
  .percentage-control {
    margin-bottom: 1.5rem;
  }
  
  .slider {
    width: 100%;
    height: 0.5rem;
    border-radius: 0.25rem;
    background-color: var(--gray-200);
    appearance: none;
    margin: 0.5rem 0;
  }
  
  .slider::-webkit-slider-thumb {
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: var(--primary);
    cursor: pointer;
  }
  
  .slider::-moz-range-thumb {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: var(--primary);
    cursor: pointer;
    border: none;
  }
  
  .slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
  }
  
  /* Format Controls */
  .format-controls {
    padding: 1.5rem;
  }
  
  .control-group {
    margin-bottom: 1.5rem;
  }
  
  .control-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  
  .help-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-400);
  }
  
  .size-mode-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .size-input-group {
    display: flex;
    gap: 0.5rem;
  }
  
  .select-field {
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    padding: 0.5rem;
    font-size: 0.875rem;
    background-color: white;
    width: 6rem;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(78, 128, 238, 0.25);
  }
  
  .btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-light);
    color: var(--primary);
  }
  
  .btn-outline:hover {
    background-color: var(--primary-very-light);
    border-color: var(--primary);
  }
  
  .btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 0.25rem;
    background-color: white;
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
  }
  
  .btn-sm:hover {
    background-color: var(--gray-100);
  }
  
  .btn-sm.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
  }
  
  .btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.375rem;
    color: var(--gray-500);
  }
  
  .btn-icon:hover {
    background-color: var(--gray-100);
    color: var(--gray-700);
  }
  
  .btn-block {
    width: 100%;
  }
  
  .icon-small {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
  }
  
  /* Features and About Section */
  .features-section {
    padding: 4rem 0;
    background-color: white;
  }
  
  .section-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .about-section {
    margin-bottom: 4rem;
  }
  
  .about-content {
    max-width: 64rem;
    margin: 0 auto;
  }
  
  .about-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
  }
  
  .subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1rem 0 2rem;
  }
  
  @media (min-width: 768px) {
    .features-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .feature-card {
    padding: 1.25rem;
    border-radius: var(--radius);
    border-width: 1px;
    border-style: solid;
  }
  
  .feature-card.blue {
    background-color: #F0F7FF;
    border-color: #BFDBFE;
  }
  
  .feature-card.purple {
    background-color: #F5F3FF;
    border-color: #DDD6FE;
  }
  
  .feature-card.green {
    background-color: #ECFDF5;
    border-color: #A7F3D0;
  }
  
  .feature-card.amber {
    background-color: #FFFBEB;
    border-color: #FDE68A;
  }
  
  .feature-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .feature-card.blue .feature-title {
    color: #1E40AF;
  }
  
  .feature-card.purple .feature-title {
    color: #6D28D9;
  }
  
  .feature-card.green .feature-title {
    color: #047857;
  }
  
  .feature-card.amber .feature-title {
    color: #B45309;
  }
  
  .feature-text {
    font-size: 0.875rem;
  }
  
  .technical-features {
    background-color: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    margin-top: 2rem;
  }
  
  .features-list {
    list-style: disc;
    padding-left: 1.5rem;
    color: var(--gray-700);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  @media (min-width: 768px) {
    .features-list {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  /* FAQ Section */
  .faq-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
  }
  
  .accordion {
    margin-bottom: 2.5rem;
  }
  
  .accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
  }
  
  .accordion-button {
    background-color: white;
    color: var(--gray-800);
    font-weight: 500;
    text-align: left;
    padding: 1rem;
    width: 100%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .accordion-button:hover {
    background-color: var(--gray-50);
  }
  
  .accordion-button::after {
    content: '+';
    font-size: 1.25rem;
  }
  
  .accordion-button.active::after {
    content: '-';
  }
  
  .accordion-content {
    padding: 0 1rem 1rem;
    color: var(--gray-600);
    display: none;
  }
  
  .accordion-content.active {
    display: block;
  }
  
  .support-contact {
    text-align: center;
    margin-top: 2.5rem;
  }
  
  .support-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary);
  }
  
  .support-link:hover {
    text-decoration: underline;
    color: var(--primary-dark);
  }
  











  /* 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 Notifications */
  .toast-container {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .toast {
    padding: 1rem;
    border-radius: var(--radius);
    background-color: white;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease-out;
    max-width: 24rem;
    display: flex;
    align-items: center;
  }
  
  .toast-success {
    border-left: 4px solid var(--success);
  }
  
  .toast-error {
    border-left: 4px solid var(--error);
  }
  
  .toast-icon {
    margin-right: 0.75rem;
    flex-shrink: 0;
  }
  
  .toast-success .toast-icon {
    color: var(--success);
  }
  
  .toast-error .toast-icon {
    color: var(--error);
  }
  
  .toast-content {
    flex-grow: 1;
  }
  
  .toast-title {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
  
  .toast-message {
    font-size: 0.75rem;
    color: var(--gray-600);
  }
  
  @keyframes slideIn {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  
  /* Modal */
  .modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
  }
  
  .modal-content {
    position: relative;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
  }
  
  .close-modal {
    position: absolute;
    top: -2.5rem;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
  }
  
  #fullscreen-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
  }