* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Section - Exact match */
.hero-section {
  margin-top: 20px;
  background-image: url("images/bg-header-image.webp");
  background-repeat: no-repeat;
  border-bottom: 1px solid #e9ecef;
}

.download-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
#btn-download {
  background-color: #0a0a0a;
}
#btn-download:hover {
  background-color: #d98609; /* Bootstrap yellow */
  /* color: black; */
}


/* Features Section */
.features-section {
  background-image: url(images/uneven_edges.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* background: #f8f9fa; */
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.feature-image {
  width: 150px;
  height: 150px;
  background: #3498db;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 48px;
}

.feature-content h3 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Safeguard Section */
.safeguard-section {
  background: #ffffff;
  padding: 80px 0;
}

.section-divider {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
  margin: 40px 0;
}

.safeguard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 60px;
}

.safeguard-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.safeguard-icon {
  width: 80px;
  height: 80px;
  background: #ff6b35;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
}

.safeguard-content h3 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.safeguard-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* Peace of mind section */
.peace-section {
  background: #f8f9fa;
  padding: 60px 0;
  text-align: center;
}

.peace-image {
  width: 100%;
  max-width: 500px;
  height: 300px;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  margin: 0 auto 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 600;
}

.peace-text {
  font-size: 28px;
  color: #2c3e50;
  font-weight: 600;
}

/* Lockers Section */
.lockers-section {
  background: #0d47a1;
  padding: 80px 0;
}

.available-locker-heading {
  color: #fff;
  font-size: 36px;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 600;
}

.lockers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.locker-item {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.locker-item:hover {
  border-color: #3498db;
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.1);
}

.locker-image {
  width: 100px;
  height: 100px;
  background: #3498db;
  border-radius: 10px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
}

.locker-title {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.locker-description {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

/* Trusted Section */
.trusted-section {
  background: #f8f9fa;
  padding: 80px 0;
  text-align: center;
}

.trusted-title {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

.trusted-subtitle {
  font-size: 18px;
  color: #666;
}

/* .trusted_by_images {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 10px;
} */

.trusted_by_images_row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.trusted-banner {
  width: 100%;
  height: 60px;
  background: #34495e;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 40px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* CTA Section */
.cta-section {
  background: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-size: 32px;
  color: #2c3e50;
  font-weight: 600;
}
.video-section {
  padding: 40px 0;
  background-color: #1c1c1c00;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.slides-section {
  padding: 40px 0;
  background-color: #ffffff;
}

.slideshow-container {
  max-width: 700px;
  margin: auto;
  position: relative;
}

.slide {
  display: none;
  text-align: center;
  color: #fca542;
  font-size: 1.5em;
  padding: 20px;
}

.slide.visible {
  display: block;
}

.testimonial-section {
  padding: 60px 20px;
  background-color: #2b09ec00;
  text-align: center;
  color: white;
}

.testimonial-title {
  color: #0a0a0a;
  font-size: 2rem;
  margin-bottom: 40px;
}

.testimonial-slider {
  position: relative;
  width: 100%;
  max-width: 953px;
  margin: auto;
  overflow: hidden;
  height: auto;
}

.testimonial-card {
  display: none;
  background: #0d47a1;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease;
}

.testimonial-card.active {
  display: block;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 20px;
}

.testimonial-author {
  color: #fdfcfc;
  font-size: 0.95rem;
}

.testimonial-nav {
  margin-top: 20px;
}

.testimonial-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  border: none;
  background: #555;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-nav button.active {
  background: #0b4d99;
}

.testimonial-source {
  margin-top: 20px;
  color: #aaa;
  font-size: 0.9rem;
}

/* Modern Overview Styles */
.modern-overview {
  background: #ffffff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.modern-container {
  max-width: 1000px;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.modern-title {
  font-size: 2.2rem;
  text-align: center;
  color: #1e1e2f;
  margin-bottom: 30px;
  font-weight: 700;
}

.modern-description {
  font-size: 1rem;
  line-height: 1.9;
  color: #333;
  text-align: justify;
  font-family: "Segoe UI", sans-serif;
}

/* Comparison Section Styles */
.comparison-section {
  display: flex;
  justify-content: center;
  margin: 50px 0 120px 0;
}

.comparison-container {
  max-width: 1000px;
  width: 100%;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #1e1e2f;
}

.comparison-table {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-collapse: collapse;
}

.comparison-header,
.comparison-row {
  display: contents;
}

/* Use light gray borders */
.feature-column,
.free-column,
.subscribed-column {
  padding: 20px;
  border: 1px solid #979696; /* Light gray border */
  text-align: center;
  font-size: 1rem;
}

/* Feature Column Styling */
.feature-column {
  background-color: #ffffff;
  font-weight: bold;
  text-align: left;
  overflow: hidden;
}

/* Free Column Styling */
.free-column {
  background-color: #ffffff;
}

/* Subscribed Column Styling */
.subscribed-column {
  background-color: #a8e6b5;
}

/* Header Styling */
.comparison-header .feature-column,
.comparison-header .free-column {
  background-color: #f5f5f5;
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-header .subscribed-column {
  background-color: #a8e6b5;
  color: #064d17;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Check / Cross Icons */
.check-icon::before {
  content: "✔";
  color: #28a745;
  font-size: 1.2rem;
  font-weight: bold;
}

.cross-icon::before {
  content: "✖";
  color: #ff4d4f;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Why Choose Section */
.why-choose-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.why-choose-section .section-title {
  font-size: 2.5rem;
  font-weight: bold;
  /* color: #1e1e2f; */
  margin-bottom: 50px;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.choose-card {
  background: #0d47a1;
  border-radius: 20px;
  padding: 30px 20px;
  /* box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-25px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

.card-icon {
  /* font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji",
    sans-serif; */
  font-size: 2.5rem;
  color: #ebebeb;
  margin-bottom: 20px;
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
}

.card-title {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 10px;
  font-weight: 600;
}

.card-text {
  color: white;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-section {
  max-width: 953px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  font-family: Arial, sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  font-size: 1rem;
  color: #555;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 15px;
  max-height: 500px;
}




/* Animations */
/* .fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
} */

.btn-group {
  margin-top: -48px;
}
.platform-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.platform-tabs a {
  text-decoration: none;
}

.platform-btn {
  width: 280px;
  background-color: #cccccc;
  color: black;
  border: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 5px 30px 8px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 150px;
  transition: background-color 0.3s, color 0.3s;
  text-align: center;
}

/* Active button */
.platform-btn.active {
  background-color: #008000;
  color: #fff;
}


.main-navbar {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Menu Toggle Button */
.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  display: none;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu li a {
  color: #0b2545;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #030405;
}


.highlight-section {
  margin: 0px auto;
  margin: 95px 0 0 0;
  display: flex;
  flex-direction: column;
}

.highlight-background {
  width: auto;
  height: auto;
  background-color: #f8f8f8f8;
  display: flex;
  justify-content: center;
  padding: 14px 0;
}
.white-background {
  background-color: #fff !important;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 30px;
  cursor: pointer;
  max-width: 1000px;
  padding: 0 20px;
}


/* Zig-zag layout */
.highlight-item.reverse {
  flex-direction: row-reverse;
}

.highlight-icon {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #f0f0f0;
}

.highlight-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.highlight-text {
  flex: 1;
}

.highlight-text h3 {
  font-size: 1.4rem;
  color: #034e9b;
  font-weight: 700;
  margin-bottom: 12px;
}

.highlight-text p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}


h1 {
  font-size: 28px;
  color: #1a237e;
  /* text-align: center; */
  font-weight: 700;
}

h1 span {
  color: #f9a825;
}

.locker-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.locker {
  width: 271px;
  position: relative;
  border-radius: 8px;
}

/* Document (gray paper) */
.paper {
  background-color: #fff;
  padding: 20px 10px 10px;
  height: 280px;
  border-radius: 8px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
  text-align: left;
  font-size: 12px;
  z-index: 1;
  position: relative;
}

.paper h3 {
  /* margin-top: 0; */
  color: #0d47a1;
  font-weight: 700;
  /* height: 25%; */
  font-size: 20px;
  text-align: center;
}

.locker-text {
  font-size: 15px;
  /* height: 40%; */
  text-align: center;
}

.folder-icon {
  text-align: center;
  height: 27%;
  position: relative;
  bottom: 9px;
}

.folder-icon img {
  width: 80px;
  margin-top: 7px;
  margin-bottom: 20px;
}

.slider-container {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.trusted-slider {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.trusted-logo {
  padding: 10px 15px;
  box-sizing: border-box;
}

/* ***************************************************************************************************************************** */
/* ***************************************************************************************************************************** */

#mac-tab.active,
#ios-tab.active {
  background-color: #000000;
  color: #ffffff;
}

.product_page_heading1 {
  font-size: 36px;
  font-weight: 700;
  padding-left: 70px;
  height: 55px;
  padding-top: 6px;
  line-height: 1.1;
  margin-top: 24px;
  white-space: nowrap;
}
.folder-lock-10_icon {
  background: url("images/FolderLock10.png");
  background-repeat: no-repeat;
}
.topelement_txt_clr {
  color: #fff !important;
}
.version_span {
  color: #034e9b;
  font-size: 16px;
  display: block;
  font-weight: 600;
  line-height: 1.1;
}
.uni-h2 {
  font-size: 20px;
  color: #ffae13;
  font-weight: 600;
}
.uni-h2-stmt {
  margin-bottom: 30px;
  margin-top: 30px;
}
.left_container {
  /* top: 30px; */
  position: relative;
  width: 30%;
  height: 100%;
  float: left;
}
.right_container {
  width: 70%;
  height: 100%;
  float: right;
}
.mainn_container {
  margin: auto;
  font-family: "Montserrat", sans-serif;
  top: 50px;
}
.mainn_container_fl10_height,
.mainn_container_fl10_mobile_height,
.mainn_container_cs_height {
  height: 530px;
}
.mainn_container {
  width: 100%;
  position: relative;
  margin-bottom: 25px;
}
.sub_contains {
  width: 100%;
  height: 100%;
  position: absolute;
}
.h6_points {
  color: #666;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: inherit;
}
sup {
  top: -1em;
}

.no-padd {
  padding-left: 0;
  padding-right: 0;
}
.folderlock_download_button_windows ul li, .folderlock_download_button_macos ul li, .folderlock_download_button_android ul li, .folderlock_download_button_ios ul li {
  margin-right: 10px;
  list-style: none;
  position: relative;
  display: inline-block;
}
a.db_on_scroll:link,
a.db_on_scroll:visited,
a.ddb_on_scroll:link,
a.ddb_on_scroll:visited {
  color: #ffffff;
  text-decoration: none;
}
.folderlock_download_button_windows ul li a,
.folderlock_download_button_android ul li a {
  background-color: #0b8e24 !important;
  border: 1px solid #0b8e24;
}
.folderlock_download_button_windows ul li a, .folderlock_download_button_macos ul li a {
  text-align: left;
  min-width: 254px;
  width: 100%;
  height: unset;
  padding: 12px 32px 12px 88px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 22px;
  float: left;
  margin-bottom: 10px;
  border-radius: 10px;
  line-height: 1.5;
}
.folderlock_download_button_android ul li a, .folderlock_download_button_ios ul li a {
    border-radius: 10px;
    font-size: 21px;
    width: 258px;
    height: 85px;
    padding: 8px 4px 8px 64px;
    color: #fff;
    text-decoration: none;
    float: left;
    text-align: left;
    background: #000;
    margin-bottom: 10px;
    display: block;
}
.folderlock_download_button_windows ul li a:hover, .folderlock_download_button_android ul li a:hover {
    -webkit-transition: all 0.3s !important;
    transition: all 0.3s !important;
    background-color: #036e10 !important;
}
.folderlock_download_button_windows ul li a span, .folderlock_download_button_macos ul li a span {
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.5px;
  margin-top: -14px;
  display: block;
  line-height: 1.6;
}
.folderlock_download_button_android ul li a span, .folderlock_download_button_ios ul li a span {
  font-weight: 600;
  display: block;
  text-transform: uppercase;
  font-size: 23px;
  margin-top: 0;
  line-height: 1;
}
.ddb_on_scroll .ns_banner_desktop_icon,
.ddb_on_scroll .ns_banner_macos_icon {
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 14%;
  left: 22px;
  width: 58px;
  height: 58px;
  transition: all 0.3s !important;
}
.ddb_on_scroll .ns_banner_ios_icon, .ddb_on_scroll .ns_banner_android_icon {
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 14%;
  left: 10px;
  width: 50px;
  height: 50px;
  transition: all 0.3s !important;
}

.ddb_on_scroll .ns_banner_desktop_icon {
  background-image: url("images/windows-logo.png");
}
.ddb_on_scroll .ns_banner_macos_icon {
  background-image: url(images/mac-logo.png);
}
.ddb_on_scroll .ns_banner_ios_icon {
  background-image: url("images/iOS-Logo-white.webp");
}
.ddb_on_scroll .ns_banner_android_icon {
  background-image: url("images/googleplay-logo.webp");
}


.download-button-windows::before, .download-button-windows.active::before {
  width: 27px !important;
  height: 27px !important;
}
.download-buttons::before, .download-buttons.active::before {
  content: "";
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: cover;
}

.download-button-windows::before {
  background-image: url(images/Windows-Logo-black.png);
}
.download-button-macos::before {
  background-image: url(images/Mac-Logo-black.png);
}
.download-button-ios::before {
  background-image: url(images/iOS-Logo-black.png);
}
.download-button-android::before {
  background-image: url(images/Android-Logo-black.png);
}

.download-button-windows.active::before {
  background-image: url(images/windows_icon.webp);
}
.download-button-macos.active::before {
  background-image: url(images/mac-logo.webp);
}
.download-button-ios.active::before {
  background-image: url(images/iOS-Logo-white.webp);
}
.download-button-android.active::before {
  background-image: url(images/Android-Logo-white.webp);
}




/* @media (max-width: 1261px) { */
  /* .align-items-start {
    align-items: center !important;
  } */
  
  /* .text-start {
    width: 100% !important;
  } */
/* } */

@media (max-width: 992px) {
  .right_container {
    display: none;
  }
  .left_container {
    width: 100%;
  }
  .slider-container {
    flex-direction: column;
  }
}
@media (max-width: 992px) and (min-width: 1261px) {


  .animation {
    aspect-ratio: 10/10 !important;
  }
  .left_column {
    display: flex;
    flex-direction: column !important;
  }
  .text-start {
    width: 100% !important;
  }
}

/* Responsive (Mobile & Tablet) */
@media (max-width: 991px) {
  .menu-toggle {
    display: block;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background: linear-gradient(to bottom, #eaf6fb, #d7eaf7);
    /* Soft gradient like your image */
    position: absolute;
    top: 65px;
    right: 15px;
    width: 250px;
    padding: 10px 0;
    border-radius: 10px;
    border: 1px solid #d0e4ef;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    animation: slideDown 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav-menu.show-menu {
    display: flex;
  }

  .nav-menu li {
    padding: 0px 15px;
    text-align: left;
    border-bottom: 1px solid #e0edf5;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu li a {
    color: #2a2a2a;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease,
      background-color 0.3s ease;
    display: block;
    border-radius: 6px;
  }

  .nav-menu li a:hover {
    color: #4da6ff;
    /* Light sky blue */
    background-color: rgba(77, 166, 255, 0.1);
    text-shadow: 0 0 5px #4da6ff;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Responsive for tablets/mobiles */
@media (max-width: 768px) {
  .align-items-start {
    align-items: center !important;
  }

  .highlight-item,
  .highlight-item.reverse {
    flex-direction: column;
    text-align: center;
  }

  .highlight-icon {
    margin-bottom: 15px;
  }

  .features-grid,
  .safeguard-grid,
  .lockers-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trusted-logos {
    gap: 30px;
  }

  .feature-item,
  .safeguard-item {
    flex-direction: column;
    text-align: center;
  }

  .trusted-logo {
    max-width: 150px;
    width: 28%;
  }

}

@media (max-width: 720px) {
  .align-items-start {
    align-items: center !important;
  }


  .left_column {
    display: flex;
    flex-direction: column !important;
  }
  .text-start {
    width: 100% !important;
  }
}

/* Comparison Responsiveness  */
@media (max-width: 634px) {
  .comparison-table {
    display: block;
  }

  .comparison-header,
  .comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
  }

  .feature-column {
    grid-column: span 2;
    background-color: #f0f0f0;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    padding: 15px;
    border-bottom: 1px solid #ccc;
  }

  .free-column,
  .subscribed-column {
    padding: 15px;
    font-size: 0.95rem;
  }

  .comparison-header .feature-column {
    background-color: #eaeaea;
  }

  .comparison-header .free-column,
  .comparison-header .subscribed-column {
    font-weight: 600;
  }

  .comparison-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .platform-tabs {
    /* flex-wrap: nowrap; */
    gap: 5px;
  }
  .platform-btn {
    /* flex: 1 10% 100%; */
    padding: 5px 12px;
    font-size: 13px;
    min-width: 141px;
  }
}

@media (max-width: 650px) {
  .platform-tabs {
    /* flex-wrap: nowrap; */
    gap: 5px;
  }
  .platform-btn {
    /* flex: 1 10% 100%; */
    font-size: 13px;
    min-width: 130px;
  }
}

@media (max-width: 600px) {
  .platform-tabs {
    /* flex-wrap: nowrap; */
    gap: 5px;
  }
  .platform-btn {
    /* flex: 1 10% 100%; */
    padding: 5px 5px;
    font-size: 13px;
    min-width: 120px;
  }
  .platform-btn {
    gap: 5px;
  }
  .download-button-windows::before, .download-button-windows.active::before {
    width: 22px !important;
    height: 22px !important;
  }
}

@media (max-width: 570px) {
  .platform-tabs {
    /* flex-wrap: nowrap; */
    gap: 5px;
  }
  .platform-btn {
    /* flex: 1 10% 100%; */
    font-size: 13px;
    min-width: 100px;
  }
}

@media (max-width: 500px) {
  .platform-tabs {
    /* flex-wrap: nowrap; */
    gap: 5px;
  }
  .platform-btn {
    /* flex: 1 10% 100%; */
    font-size: 13px;
    min-width: 80px;
  }
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .platform-btn {
    /* flex: 0 0 48%; */
    padding: 10px 12px; /* ⬅️ reduced left-right padding */
    font-size: 14px;
  }

  .platform-tabs {
    gap: 10px;
    justify-content: center;
  }
  .a {
    display: none !important;
  }
  .b {
    display: none !important;
  }
  .platform-btn {
    padding: 5px 12px;
    font-size: 13px;
    /* flex: 1 10% 100%; */
  }
}

@media (max-width: 375px) {
  .align-items-start {
    align-items: center !important;
  }


  .left_column {
    display: flex;
    flex-direction: column !important;
  }
  .text-start {
    width: 100% !important;
  }
  .btn-group {
    margin-top: -48px;
  }
}

/* Hover effect */
@media (max-width: 350px) {
  .platform-btn {
    /* flex: 0 0 48%; */
    padding: 5px 12px;
    font-size: 14px;
    flex: 1 20% 100%;
  }

  .platform-tabs {
    gap: 10px;
    justify-content: center;
  }

  .a,
  .b {
    display: none !important;
  }
}
