/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f8f9fa;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #333;
}

/* .container {
    width: 100%; 
} */

/* main container */

.main-container {
  /* width: 50%;  */
  /* max-width: 800px; */
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* For tablet and above */
@media (max-width: 800px) {
  .container {
    width: 100%;
  }

  .main-container {
    width: 95%;
  }
}

/* For desktop */
@media (min-width: 1024px) {
  .container {
    width: 100%;
  }

  .main-container {
    width: 50%;
  }
}


/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: #3a86ff;
  text-decoration: none;
}

.logo i {
  margin-right: 8px;
  font-size: 28px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu li a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #3a86ff;
}

.header-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
}

.btn-outline {
  border: 2px solid #3a86ff;
  color: #3a86ff;
  background: transparent;
}

.btn-outline:hover {
  background-color: #3a86ff;
  color: white;
}

.btn-primary {
  background-color: #3a86ff;
  color: white;
  border: 2px solid #3a86ff;
}

.btn-primary:hover {
  background-color: #2a75e8;
  border-color: #2a75e8;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background-color: #3a86ff;
  border-radius: 10px;
  transition: all 0.3s;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  z-index: 99;
  transform: translateY(-150%);
  transition: transform 0.4s ease;
}

.mobile-nav.active {
  transform: translateY(0);
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 20px;
}

.mobile-nav ul li a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  font-size: 18px;
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.mobile-nav .mobile-buttons {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Main Content Styles */
main {
  flex: 1;
  padding: 60px 0;
  text-align: center;
}

.hero {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 0;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #222;
}

.hero p {
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.upload-area {
  background: white;
  border-radius: 16px;
  padding: 60px 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 40px auto;
  border: 2px dashed #ddd;
  transition: all 0.3s;
}

.upload-area:hover {
  border-color: #3a86ff;
}

.upload-area i {
  font-size: 60px;
  color: #3a86ff;
  margin-bottom: 20px;
}

.upload-area h2 {
  margin-bottom: 15px;
  color: #333;
}

.upload-area p {
  color: #777;
  margin-bottom: 30px;
}

/* Footer Styles */
footer {
  background-color: #1a1a2e;
  color: #f0f0f0;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  color: white;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background: #3a86ff;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #3a86ff;
  padding-left: 5px;
}

.footer-about p {
  color: #bbb;
  line-height: 1.6;
  margin-top: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2d2d44;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #3a86ff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #2d2d44;
  padding-top: 30px;
  text-align: center;
  color: #bbb;
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #3a86ff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {

  .nav-menu,
  .header-buttons {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  .upload-area {
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 28px;
  }

  .footer-bottom .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/**********************************/
/*********** Safe and Secure CSS **********/
/**********************************/

/* Custom CSS */


#originalImage,
#compressedImage {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
}

#qualitySlider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: #ddd;
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

#qualitySlider:hover {
  opacity: 1;
}

#qualitySlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #4CAF50;
  cursor: pointer;
  border-radius: 50%;
}

#qualitySlider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #4CAF50;
  cursor: pointer;
  border-radius: 50%;
}

.line {
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
  margin-top: 5px;
  width: 100%;
}

/* for button-29*/
.button-29 {
  align-items: center;
  appearance: none;
  background-image: radial-gradient(100% 100% at 100% 0, #5adaff 0, #5468ff 100%);
  border: 0;
  border-radius: 6px;
  box-shadow: rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, rgba(58, 65, 111, .5) 0 -3px 0 inset;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: "JetBrains Mono", monospace;
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow .15s, transform .15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow, transform;
  font-size: 18px;
}

.button-29:focus {
  box-shadow: #3c4fe0 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
}

.button-29:hover {
  box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
  transform: translateY(-2px);
}

.button-29:active {
  box-shadow: #3c4fe0 0 3px 7px inset;
  transform: translateY(2px);
}


/* for button-30*/
.button-30 {
  align-items: center;
  appearance: none;
  background-image: radial-gradient(100% 100% at 100% 0, #5ad45a 0, #20732e 100%);
  border: 0;
  border-radius: 6px;
  box-shadow: rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, rgba(58, 65, 111, .5) 0 -3px 0 inset;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: "JetBrains Mono", monospace;
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow .15s, transform .15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow, transform;
  font-size: 18px;
}

.button-30:focus {
  box-shadow: #4CAF50 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #4CAF50 0 -3px 0 inset;
}

.button-30:hover {
  box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #4CAF50 0 -3px 0 inset;
  transform: translateY(-2px);
}

.button-30:active {
  box-shadow: #4CAF50 0 3px 7px inset;
  transform: translateY(2px);
}


/* for button-31*/
.button-31 {
  align-items: center;
  appearance: none;
  background-image: radial-gradient(100% 100% at 100% 0, #666666 0, #121212 100%);
  border: 0;
  border-radius: 6px;
  box-shadow: rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, rgba(58, 65, 111, .5) 0 -3px 0 inset;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: "JetBrains Mono", monospace;
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow .15s, transform .15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow, transform;
  font-size: 18px;
}

.button-31:focus {
  box-shadow: #121212 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #4CAF50 0 -3px 0 inset;
}

.button-31:hover {
  box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #121212 0 -3px 0 inset;
  transform: translateY(-2px);
}

.button-31:active {
  box-shadow: #121212 0 3px 7px inset;
  transform: translateY(2px);
}


.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

/* Hide the default file input */
.file-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

/* Container styling */
.custom-file-upload {
  margin-bottom: 1rem;
  /* mb-4 equivalent */
  font-family: 'Segoe UI', sans-serif;
}

/* Custom label styling */
.file-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

/* Selected file name styling */
.file-name {
  font-size: 18px;
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 400px;
  white-space: nowrap;
}

/* Focus accessibility */
.file-input:focus+.file-label .file-button {
  outline: 2px solid #54ff68;
  box-shadow: 0 0 0 4px rgba(84, 255, 104, 0.3);
}


.format-comparison {
  margin: 25px 0;
}

#main_points {
  color: black;
  /* Additional styling */
  font-weight: bold;
}


.main-header {
  text-align: center;
  margin-bottom: 40px;
}


.mission-box {
  background-color: #f9f9f9;
  border-left: 4px solid #4CAF50;
  padding: 25px;
  margin: 30px 0;
}

.team-member {
  display: flex;
  align-items: center;
  margin: 25px 0;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 25px;
  border: 3px solid #4CAF50;
}

.feature-icon {
  color: #4CAF50;
  font-size: 1.5em;
  margin-right: 10px;
}

.feature-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.cta-button {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s;
}

.cta-button:hover {
  background-color: #3e8e41;
  transform: translateY(-2px);
}


.contact-header {
  text-align: center;
  margin-bottom: 40px;
}



.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-form {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.submit-btn {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}

.submit-btn:hover {
  background-color: #3e8e41;
}

.contact-info {
  padding: 20px;
}

.info-box {
  background: #f0f8ff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.info-icon {
  color: #4CAF50;
  font-size: 1.5em;
  margin-right: 10px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}




p,
ul {
  margin-bottom: 15px;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

.highlight-box {
  background-color: #f9f9f9;
  border-left: 4px solid #4CAF50;
  padding: 15px;
  margin: 20px 0;
}

.update-date {
  font-style: italic;
  color: #666;
  text-align: right;
}



p,
ul,
ol {
  margin-bottom: 15px;
}

ul,
ol {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

.highlight-box {
  background-color: #f9f9f9;
  border-left: 4px solid #4CAF50;
  padding: 15px;
  margin: 20px 0;
}

.update-date {
  font-style: italic;
  color: #666;
  text-align: right;
}

.notice {
  font-weight: bold;
  color: #d32f2f;
}


#h1_head {
  color: white;
  font-size: 2em;
  margin-bottom: 20px;
}

#h1_title {
  color: #2c3e50;
  font-size: 3em;
  margin-bottom: 20px;
}

h2 {
  color: #3498db;
  font-size: 1.8em;
  margin-top: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;

}

h3 {
  color: #4CAF50;
  font-size: 1.4em;
  margin-top: 25px;
}

p {
  margin-bottom: 15px;
}

ul,
ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th,
td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

th {
  background-color: #f2f2f2;
}

.highlight {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
  margin: 20px 0;
}

.cta {
  background-color: #4CAF50;
  color: white;
  padding: 15px 25px;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
  margin: 30px 0;
  display: inline-block;
}

.faq {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 5px;
  margin-top: 30px;
}

.format-comparison {
  margin: 25px 0;
}

.secure_container {
  display: flex;
  flex-direction: column;
  /* Stacks vertically on small screens */
  gap: 20px;
}

@media (min-width: 768px) {
  .secure_container {
    flex-direction: row;
    /* Side by side on larger screens */
  }
}

.square-box {
  height: auto;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* .badges-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.badge i {
  font-size: 3rem;
  margin-bottom: 10px;
}

.badge .label {
  font-weight: 600;
  color: #333;
}

/* Icon colors */
/* .shield {
  color: #2ecc71;
}  */

/* Base styles (mobile-first) */
.secure_container {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  margin: 10px;
  background: white;
}

.badge {
  text-align: center;
  margin-bottom: 12px;
  /* Space between badge and text on mobile */
}

.badge i {
  font-size: 2rem;
  color: #2ecc71;
  margin-bottom: 8px;
}

.badge .label {
  font-weight: 600;
  color: #333;
}

.right-element {
  color: #555;
  line-height: 1.5;
}

/* Desktop styles (side-by-side) */
@media (min-width: 768px) {
  .secure_container {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .badge {
    flex: 0 0 160px;
    /* Fixed width for badge */
    margin-bottom: 0;
  }

  .right-element {
    flex: 1;
    /* Takes remaining space */
  }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
#header {
  /* top:30px; */
  z-index: 997;
  transition: top 0.5s;
  box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.1);
  background: #2196F3;
}

#header.header-scrolled {
  top: 0px;
}

.navbar {
  height: 35px;
  background: #0f426b;
  padding: 0;
}

.navbar a,
.navbar div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 1.15vw;
  color: white;
  border-left: 1.5px solid white;
  text-decoration: none;
  width: 20%;
}

.navbar div {
  text-align: center;
  border-left: none;
}

.navbar a:last-child,
.navbar div:last-child {
  border-right: 1.5px solid white;
}

.navbar a:hover,
.navbar div:hover {
  color: #0f426b;
  background: white;
}

.navbar .dropbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-size: 1.15vw;
  color: white;
  border: none;
  background-color: #dc5019;
  border-left: 1.5px solid white;
  text-decoration: none;
  width: 100%;
}

/* The container <div> - needed to position the dropdown content */
.navbar .dropdown {
  position: relative;
  display: inline-block;
  width: 11.11%;
}

/* Dropdown Content (Hidden by Default) */
.navbar .dropdown-content {
  display: none;
  position: absolute;
  width: 100%;
  min-width: 10vw;
  z-index: 1;
}

/* Links inside the dropdown */
.navbar .dropdown:hover .dropdown-content a {
  background-color: whitesmoke;
  color: #0a0a28;
  padding: 0.9vw 1vw;
  width: 100%;
  min-width: 10vw;
  font-size: 1vw;
  text-decoration: none;
  text-align: center;
}

/* Change color of dropdown links on hover */
.navbar .dropdown .dropdown-content:hover a:hover {
  background-color: #dc5019;
  color: white;
}

/* Show the dropdown menu on hover */
.navbar .dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.navbar .dropdown:hover .dropbtn {
  background-color: white;
  color: #D5B981;
}


/*************
************ Mobile Navigation ***********
******************/
@media (max-width: 768px) {

  .navbar {
    display: none;
  }

  #header .logo {
    display: block;
    text-align: center;
  }

  #header .logo img {
    height: 70px;
  }
}

@media (min-width: 769px) {

  .navbar-mobile {
    display: none;
  }
}

.navbar-mobile {
  background-color: #0f426b;
  overflow: hidden;
}

.navbar-mobile a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 10px 12px;
  text-decoration: none;
  font-size: 17px;
}

.navbar-mobile .mobile-nav-toggle {
  display: none;
}

.navbar-mobile .dropdown {
  float: left;
  overflow: hidden;
}

.navbar-mobile .dropdown .dropbtn {
  font-size: 17px;
  border: none;
  outline: none;
  color: white;
  padding: 10px 12px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar-mobile .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.navbar-mobile .dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.navbar-mobile a:hover,
.dropdown:hover .dropbtn {
  background-color: white;
  color: #D5B981;
}

.navbar-mobile .dropdown-content a:hover {
  background-color: whitesmoke;
  color: #dc5019;
}

.navbar-mobile .dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 768px) {

  .navbar-mobile a:not(:first-child),
  .dropdown .dropbtn {
    display: none;
  }

  .navbar-mobile a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .navbar-mobile.responsive {
    position: relative;
  }

  .navbar-mobile.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  .navbar-mobile.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

  .navbar-mobile.responsive .dropdown {
    float: none;
  }

  .navbar-mobile.responsive .dropdown-content {
    position: relative;
  }

  .navbar-mobile.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

/* for language selector */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.language-selector {
  /* position: relative; */
  position: absolute;
  max-width: 200px;
  /* margin: 0 auto; */
  /* z-index: 10; */
  z-index: 1000;
  margin: 0 auto;
  right: 15px;
  top: 15px;
}

.selector-header {
  background: #3a86ff;
  color: white;
  padding: 20px;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.selector-header:hover {
  background: #3a86ff;
  transform: translateY(-2px);
}

.selector-header i {
  transition: transform 0.3s ease;
}

.selector-header.active i {
  transform: rotate(180deg);
}

.language-options {
  background: white;
  border-radius: 0 0 12px 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.language-options.active {
  max-height: 250px;
}

.language-search {
  padding: 15px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  background: white;
  z-index: 1;
}

.language-search input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s;
}

.language-search input:focus {
  outline: none;
  border-color: #3a86ff;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.options-container {
  max-height: 170px;
  overflow-y: auto;
}

.language-option {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f1f2f6;
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background: #f8f9fa;
  transform: translateX(5px);
}

.language-name {
  font-weight: 600;
  color: #2c3e50;
  flex-grow: 1;
  text-align: left;
}

.language-code {
  background: #eaf2f8;
  color: #3a86ff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

.no-results {
  padding: 20px;
  text-align: center;
  color: #7f8c8d;
  font-style: italic;
}

@media (max-width: 768px) {

  #main-language {
    display: none;
  }

}

.logo-icon {
  padding: 10px;
  background: white;
  /* border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo-icon:hover {
  transform: scale(1.05);
}

.logo-icon .logo-img {
  height: 35px;
}