/* Global Reset */
* {

 
  box-sizing: border-box;
  
}

/* Base Font Setup */
body {
  overflow-x: hidden;
  font-family: 'Poppins Bold', Arial, sans-serif;
  font-size: 16px;
  /* line-height: 150%; */
  background-color: #fff;
  color: #333;
  
}

.highlight {
  background-color: #bebcfe;
  transition: background-color 0.3s ease;
  padding: 2px 4px;
  border-radius: 3px;
}

/* h1, h2, h3 {
  font-family: 'Poppins Bold', Arial, sans-serif;
} */

/* Header Styling */
.top-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  font-family: 'Poppins';
  /* border-bottom: 1px solid #fefdfd; */
  /* background-color: transparent; */
  padding: 10px 20px;
  
  /* color: #faf8f8; */
  font-size: 16px;
  font-weight: normal; 
 z-index: 500; 

}

.top-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.left span {
  margin-right: 10px;
  gap: 15px;
  color: #020202;
  text-decoration: none;
  font-size: 16px;
}
.left a img{
  width: 25px;
  height: 25px;
  margin-left: 15px;
}
.right img{
 height: 15px;
 width: 15px;
}

.right {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: 16px;
}


/* Main Header */
.header {
  
  font-family: 'Poppins Bold', Arial, sans-serif;
  position: relative;
  top: 70px;
  z-index: 1000;
  width: 100%;
  background-color: transparent;
  padding: 20px 30px;
  box-shadow: none;
  display: flex;
  height: 73px;
  justify-content: center;
  align-items: center;
  /* border: 1px solid red; */
  z-index: 500; 
 
}


.header.sticky {
  position: fixed;
  top: 0;
  background-color: white ; /* White when scrolled */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  color: black;
  
}
.header-placeholder {
  height: 0;
  transition: height 0.3s ease-in-out;
}

.header-placeholder.sticky {
  height: 73px; /* Match your header height */
}
.header.sticky a {
  color: black ; /* Change nav links to black */
   /* text-shadow: none; */
}

.header a {
  color: white ; 
  transition: color 0.3s ease-in-out;
  /* text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.8); */
  
}
/* Hamburger Icon */
.hamburger-icon {
  width: 50px;
  left: 300px;
  gap: 34px;
  height: 50px; 
  background-color: #F0F0F0; 
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center; 
  cursor: pointer;
  margin-left: 34px; 
}


/* Image inside the button */
.hamburger-icon-wrapper {
  width: 50px; 
  height: 50px;
  background-color: #f0f0f0; 
  border-radius: 10px; 
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative; 
  transition: background-color 0.3s ease;
}



.hamburger-img {
  width: 30px; 
  height: 30px;
  transition: transform 0.3s ease, filter 0.3s ease;
  
}

/* .hamburger-img:hover {
  transform: scale(1.1);
  filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(746%) hue-rotate(227deg) brightness(96%) contrast(91%);
} */

.color-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background:  #4440db; */
  border-radius: 10px; 
  z-index: -1; 
}

.logo {
  height: 70px;
  display: block;
  margin: 0;
  margin-left: 0px; 
  margin-right: 34px;
}

.header-content {
  font-family: 'Poppins Bold', Arial, sans-serif;
  display: flex;
  left: 400px;
  gap: 34px;
  align-items: center;
  justify-content: space-between; 
  width: 90%;
  max-width: 1440px;
  height: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  z-index: 1000;
 
  
}
.header.not-home{
  background-color: white !important;
}
.not-home{
  color: black !important;
}

.header.not-home a {
  color: black !important;
}


/* Hover effect */
.header-content:hover,
.nav a:hover {
  color: #516AF8 !important; /* Hover color */
}

/* Active state when clicked */
.header-content:active,
.header-content a:active,
.nav a.active {
  color: #516AF8 !important; 
  background-color: transparent; 
}

/* Navigation Links */
.nav {
  /* overflow: hidden; */
  display: flex;
  gap: 34px;
  margin-left: 25px;
  width: auto;
  height: 32px; 
}

.nav a {
  font-family: 'Poppins Bold', Arial, Sans-serif;
  text-decoration: none;
  font-weight: bold;
  /* color: #050404; */
  padding: 5px 12px; 
  transition: background-color 0.3s, color 0.3s;
  height: 100%;
}
/* Active state in Navigation */
.nav a.active {
  /* background-color: #ffffff; */
  color: #516AF8; 
  border-radius: 5px;
}


/* Search Bar */
.search-bar {
  display: flex;
  gap: 15px;
  margin-left: 30px;
  background-color: #f0f0f0;
  width: 52px; 
  height: 50px; 
  border-radius: 25px;
  padding-right: 15px;
  padding-left: 15px;
  align-items: center;
}
.left a{
  gap: 20px;
}
/* Search Input */
/* .search-bar input {
  flex-grow: 1;
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 20px;
  outline: none;
  font-size: 1rem;
} */

/* Search Button (Circular background) */
.search-bar button {

  background-color: #501bf0;
  color: #ebe8e8;
  border: none;
  border-radius: 50%;
  margin-left: -10px; 
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}




/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.open {
  visibility: visible;
  opacity: 1;
}

/* Search Form Styling */
.search-form {
  display: flex;
  width: 522px;
  justify-content: space-between;
  align-items: center;
  height: 66px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* border: 1px solid red; */
}


.search-form .search-bar {
  width: 100%;
  max-width: 1000px;
  border-radius: 3px;
  border: none;
  font-size: 16px;
  background-color: white;
  outline: none;
}
.search-toggle{
  height: 40px;
  width: 40px;
}

.search-form .search-bar:focus {
  border-color: #501bf0;
}


.search-overlay .close-overlay {
  position: absolute;
  top: 70px;
  right: 50px;
  background-color: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}


.search-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}
.settings-button{
  padding: 10px
}
.settings-button img{
  width: 26px;
  height: 26px;
}

.search-ok-button {
  background-color: #501bf0;
  width: 68px;
  color: #fff;
  border: none;
  height: 100%;
  border-radius: 0 3px 3px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.search-ok-button:hover {
  background-color: #3e14b8;
}


/* Side Panel */

.side-panel {
  position: fixed;
  top: 0;
  left: -420px; 
  width: 28vw;

  background-color: #0d0d0d;
  color: white;
  padding: 1vw 2vw;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  z-index: 9999;
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  
  /* border: 1px solid red; */
}
.social-icons img {
  /* width: 35vw;  
  height: 35vw; */
}



.panel-content {
 
  color: white;
  /* width: 100%; */
}
.company-name {
  font-family: 'Poppins';
  display: block;
  max-width: 100vw; 
  margin-left: -2.5vw;
  font-size: 2vw; 
  line-height: 4vw;
  font-weight: 700px; 
  color: #fff;
  margin-bottom: 2vw; 
  margin-top: 3vw; 
  text-align: center;
  letter-spacing: 0vw; 
}




/* .company-name:hover {
  color: #f0ad4e; 
  cursor: pointer;
} */
.specialization-text {
  
  font-size: 1vw;
  font-weight: 500; 
  color: #fff; 
  margin-top: 20px; 
  margin-bottom: 20px;
  line-height: 2.3vw; 
  padding-right: 1vw;
  width: 22.222vw;
  
}

/* .panel-logo {
  display: block;
  margin-bottom: 40px;
  width: 100%;
  max-width: 150px;
  margin-top: 20px;
} */

.social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.347vw;
  margin-top: 2vw;
  margin-bottom: 3.479vh;
  margin-left:-10px;
  
}

.social-icons a {
  display: inline-block;
  /* border: 3px solid rgb(249, 249, 246); */
  border-radius: 50%;
  width: 3vw;
  height: 3vw;
  background-color: #4440DB;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.social-icons a:hover {
  background-color: #ffffff;
  
}


.social-icons a img {
  filter: invert(1); 
  /* width: 1.5vw;
  height: 1.5vw; */
  object-fit: contain;
  transition: filter 0.3s ease; 
}

.social-icons a:hover img {
  filter: invert(0); 
}

.social-icons a:nth-child(3) img {
  filter: invert(0); 
}

/* Invert on hover for the third .social-icons a */
.social-icons a:nth-child(3):hover img {
  filter: invert(1); 
}


/* Styling for the contact-info section */
.contact-info span {
  font-family: 'Poppins';
  font-size: 1.7vw; 
  color: #fff; 
  font-weight: 700px;
  margin-bottom: 20px;
}

.contact-info p {
  line-height: 32px;
  font-size: 1vw; 
  font-weight: 400px;
  /* height: 96;
  width: 295px; */
  color: #ffff; 
  margin: 0.5rem 0px; 
  display: flex;
  align-items: start; 
  /* border: 1px solid red; */
  /* gap: 0.5rem;  */
}
.contact-info>p>img{
  height: 2.74vh;
  width: 1.389vw;
  margin-top: 0.5vw;
}

.contact-info p a {
  color: #fff; 
  text-decoration: none; 
  font-weight: 400;
  font-size: 1.1vw;
}

.contact-info p a:hover {
  text-decoration: underline; 
}


/* Newsletter Form */
.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  margin-bottom: 20px; 
}


.input-container {
  /* border: 1px solid red; */
  position: relative;
  width: 100%;
 
  margin-bottom: 20px;
}

.newsletter-input {
  width: 70%;
  padding: 10px;
  border: none;
  border-bottom: 2px solid #fff; 
  outline: none;
  font-size: 16px;
  background: transparent; 
  /* border: 1px solid red; */
}

.newsletter-input:focus {
  border-color: #fff; 
}

.subscribe-button {
  position: absolute;
  top: 50%;
  
  left: 13.889vw;
  transform: translateY(-50%);
  background: transparent; 
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #007bff; 
  margin-bottom: 20px;
  /* border: 1px solid red; */
}

.submit-icon {
  width: 40px; 
  height: 40px; 
  object-fit: contain; 
  margin-bottom: 10px;
  /* border: 1px solid red; */
}

@media (max-width: 768px) {
  .company-name {
    font-size: 20px;
  }
}


/* Make sure the panel only expands as needed */
.side-panel.open {
  transform: translateX(420px);
  height: 100%; 
  min-height: auto;
  /* max-height: 100vh;  */
}
/* Close Panel Button */

.close-panel {
  position: absolute;
  margin-bottom: 20px;
  top: 1vw;
  right: 1vw;
  width: 2vw; 
  height: 2vw; 
  background-color: transparent; 
  color: #fefcfc; 
  font-size: 1vw; 
  font-weight: bold;
  border: 3px solid #f9f6f6; 
  border-radius: 50%; 
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.close-panel:hover {
  background-color: rgba(255, 82, 82, 0.1); 
  /* color: #080808;  */
  transform: scale(1.1); 
}

.close-panel:focus {
  outline: none;
}


/* Dark Mode */
body.dark-mode {
  background-color: #0a0a23;
  color: #e0e0e0;
}

body.dark-mode .top-header {
  /* background-color: #0b0b0b; */
  color: #faf0f0;
}

body.dark-mode .top-header-content {
  color: #fcfafa;
}

body.dark-mode .header {
  /* background-color: #0b0b0b; */
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
}
body.dark-mode .header.sticky{
  background-color: #0b0b0b;
}

body.dark-mode .header.sticky a {
  color: #bdbdbd;
}

body.dark-mode .nav a.active {
  background-color: #1e1e1e;
  color: hsl(238, 55%, 42%);
}
body.dark-mode .specialization-text {
  font-family: Inter;
  font-size: 16px;
  font-weight: 500; 
  color: #f9f3f3; 
  margin-top: 20px; 
  margin-bottom: 20px;
  line-height: 1.5; 
  letter-spacing: 0.5px; 
}

body.dark-mode .search-bar input {
  background-color: #1f1f1f;
  color: #e0e0e0;
  border-color: #424242;
}

body.dark-mode .search-bar button {
  background-color: #3700b3;
}

body.dark-mode .search-overlay {
  background-color: rgba(18, 18, 18, 0.9);
}

body.dark-mode .search-form {
  background-color: #242424;
  color: #e0e0e0;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
}

body.dark-mode .close-overlay {
  color: #ffffff;
}

body.dark-mode .side-panel {
  background-color: #1e1e1e;
}

body.dark-mode .hamburger-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

body.dark-mode .panel-content {
  color: #ebe9e9;
}

body.dark-mode .close-panel {
  border-color: #ffffff;
}

body.dark-mode .social-icons a {
  border-color: #f4eeee;
  background-color: #f3eeee;
}

body.dark-mode .social-icons a:hover {
  background-color: #6200ea;
  border-color: #6200ea;
}

body.dark-mode .newsletter-form input {
  background-color: #1f1f1f;
  color: #e0e0e0;
  border-color: #f4eeee;
}

body.dark-mode .newsletter-form button {
  background-color: #6200ea;
}

body.dark-mode .newsletter-form button:hover {
  background-color: #3700b3;
}

body.dark-mode .dropdown-toggle {
  background-color: #080808;
  color: #e0e0e0;
}

body.dark-mode .dropdown-menu {
  background-color: #242424;
  color: #e0e0e0;
}

body.dark-mode .dropdown-menu a {
  color: #bdbdbd;
}

body.dark-mode .dropdown-menu a:hover {
  background-color: #030303;
}


/* mobile side bar */

.mobile-sidebar-toggle {
  display: none;
 
 
  
 
  border: none;
  font-size: 15px;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  cursor: pointer;
}

.mobile-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  display: flex;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 70%;
  max-width: 245px;
  height: 100%;
  background: linear-gradient(
    to right,  /* Right (#525156) → Left (#8f8f91) with slight transparency */
    #8f8f91EE,  /* ~93% opacity (almost solid) */
    #525156EE   /* ~93% opacity (almost solid) */
);
  z-index: 1101;
  /* padding: 20px; */
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.close-mobile-sidebar {
 
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px;
  /* border: 1px solid red; */
}

.mobile-nav-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  text-decoration: none;
  padding: 8px 0;
  /* border-bottom: 1px solid #eee; */
}

.mobile-nav-links a.active {
  color: #4440db;
  font-weight: bold;
}








@media (min-width: 1024px) and (max-width: 1440px) {
  /* Header adjustments */
  .header {
    padding: 15px 25px;
    height: 65px;
  }
  
  .header-content {
    gap: 25px;
    justify-content: space-between;
  }
  
  /* Logo adjustments */
  .logo {
    height: 55px;
    margin-right: 25px;
  }
  
  /* Navigation links adjustments */
  .nav {
    gap: 5px;
    margin-left: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav a ,.servicesbtn {
    font-size: 14px !important;
    padding: 5px 10px;
    white-space: nowrap;
  }
  
  /* Hamburger icon adjustments */
  .hamburger-icon-wrapper {
    width: 45px;
    height: 45px;
    margin-left: 20px;
  }
  
  .hamburger-img {
    width: 25px;
    height: 25px;
  }
  
  /* Search button adjustments */
  .search-toggle {
    margin-left: 20px;
    width: 38px;
    height: 38px;
  }
  
  /* Top header adjustments */
  .top-header {
    padding: 12px 20px;
  }
  
  .left span, .right span {
    font-size: 14px;
  }
  
  /* Settings panel adjustments */
  .settings-button {
    padding: 8px;
  }
  
  .settings-button img {
    width: 22px;
    height: 22px;
  }
  
  /* Ensure sticky header looks good */
  .header.sticky {
    padding: 10px 25px;
  }
  
  /* Side panel adjustments */
  .side-panel {
    width: 30vw;
  }
  
  .company-name {
    font-size: 1.8vw;
  }
  
  .specialization-text {
    font-size: 0.9vw;
    line-height: 1.5;
  }
  
  .contact-info span {
    font-size: 1.4vw;
  }
  
  .contact-info p {
    font-size: 0.9vw;
  }
  
  .social-icons a {
    width: 3.5vw;
    height: 3.5vw;
  }
}



@media (max-width: 1024px) {
 
  .side-panel {
    width: 35vw;
  }
  
  .company-name {
    font-size: 22px;
  }
  
  .specialization-text {
    font-size: 15px;
  }

  .header {
    padding: 15px 20px;
    height: 60px; /* Slightly reduced height */
  }
  
  .header-content {
    gap: 20px; /* Reduced gap between elements */
  }
  
  .logo {
    height: 50px; /* Slightly smaller logo */
    margin-right: 20px; /* Adjusted spacing */
  }
  
  .nav {
    gap: 0px; /* Reduced gap between nav items */
    margin-left: 0;
  }
  
  .nav a {
    font-size: 15px; /* Slightly smaller font */
    padding: 5px 8px; /* Adjusted padding */
  }
  
  .hamburger-icon-wrapper {
    width: 42px; /* Maintained similar proportions */
    height: 42px;
    margin-left: 15px;
  }
  
  .search-toggle {
    margin-left: 15px;
    width: 38px; /* Maintained similar size */
    height: 38px;
  }
  
  /* Keep original side panel adjustments */
  .side-panel {
    width: 35vw;
  }
  
  .company-name {
    font-size: 22px;
  }
  
  /* .specialization-text {
    width: 100%;
    font-size: 15px;
  } */
  /* .contact-info p{
    font-size: 15px;
  }
  .contact-info p a{
    font-size: 15px;
  } */
  .social-icons a{
    width: 4vw;
    height: 4vw;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  /* Header container adjustments */
  .header {
    padding: 12px 20px;
    height: 60px;
    top: 45px; /* Adjust if you have a top header bar */
  }

  /* Header content layout */
  .header-content {
    gap: 15px;
    width: 95%;
  }

  /* Logo sizing */
  .logo {
    height: 45px;
    margin-right: 15px;
  }

  /* Navigation links */
  .nav {
    /* gap: 12px; */
    margin-left: 0;
    flex-wrap: wrap;
  }

  .nav a,.servicesbtn {
    font-size: 13px !important;
    padding: 4px 8px;
  }

  /* Hamburger menu button */
  .hamburger-icon-wrapper {
    width: 40px;
    height: 40px;
    margin-left: 15px;
  }

  .hamburger-img {
    width: 22px;
    height: 22px;
  }

  /* Search button */
  .search-toggle {
    margin-left: 15px;
    width: 35px;
    height: 35px;
  }

  /* Top header bar */
  .top-header {
    padding: 10px 15px;
    font-size: 14px;
  }

  .left span, .right span {
    font-size: 13px;
  }

  /* Settings button */
  .settings-button {
    padding: 6px;
  }

  .settings-button img {
    width: 20px;
    height: 20px;
  }

  /* Sticky header state */
  .header.sticky {
    padding: 8px 20px;
    top: 0;
  }

  .header.sticky .logo {
    max-height: 40px;
  }

  .header.sticky .nav a {
    font-size: 12px;
  }

  /* Side panel adjustments */
  .side-panel {
    width: 40vw;
    padding: 15px;
  }

  .company-name {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .specialization-text {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .contact-info span {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .contact-info p {
    font-size: 0.9rem;
    margin: 0.3rem 0;
  }

  .social-icons {
    margin: 15px 0;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
  }
}


@media (min-width: 480px) and (max-width: 768px) {
  .mobile-sidebar-toggle{
    margin-top: -110px!important;
  }
  .header.sticky .mobile-sidebar-toggle{
    margin-top: 0px!important;
  }
  .right span {
    margin-right: 20px;
  }
  .right{
    gap: 25px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
 
 .header{
  top: 50px;
 }
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* border: 1px solid red; */
  }
  .mobile-sidebar-toggle {
    order: 1;
     /* Adjust as needed */
    /* Space between toggle and hamburger */
    /* border: 1px solid red; */
  }

  .hamburger-icon-wrapper {
    display: none!important;
    order: 2;
    /* border: 1px solid red; */
  }

  /* Center logo */
  .logo-container {
    order: 3;
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translateX(-50%);
    /* border: 1px solid red; */
  }
.logo{
  margin: auto;
  /* border: 1px solid red; */
}
  /* Right search */
  .search-bar-container {
    display: none !important;
    order: 4;
    margin-left: auto; /* Pushes it to the right */
    /* border: 1px solid red; */
  }

  
  .mobile-sidebar-toggle {
    display: block;
  }
  
  /* Hide regular nav on mobile */
  .nav {
    display: none;
  }
 .left span{
  font-size: 10px;
 }
 .right span{
  
  font-size: 10px;
  }

  .top-header {
    /* flex-direction: column; */
    
    padding: 10px;
  }

  .nav {
    display: none;
  }

  .search-bar {
    width: 100%;
  }

  .hamburger-icon {
    display: block;
  }
  .side-panel {
    width: 60vw;
    padding: 15px;
  }
  
  .company-name {
    font-size: 20px;
  }
  
  .contact-info span {
    font-size: 16px;
  }
  
  .social-icons a {
    width: 35px;
    height: 35px;
  }
  .side-panel.open{
    width: 50%;
  }
  .company-name{
    font-size: 28px;
  }
  .specialization-text{
    line-height: 34px;
    font-size: 16px;
  }
  .contact-info span{
    font-size: 25px;
  }
  .close-panel{
    font-size: 18px;
    width: 35px;
    height: 35px;
  }

  
}

@media (max-width: 480px) {
  .hamburger-icon-wrapper{
    margin-left: -5.417vw;
  }

 .search-form{
  margin-top: 100px;
  width:  60%;
  height: 60px;
  /* border: 1px solid red; */
 }
 .search-bar{
  height: fit-content;
 }
 .left a img{
  height: 10px;
  width: 10px;
 }
 .right img{
  width: 10px;
  height: 10px;
 }
.search-ok-button{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 2px 2px 0;
  height: 60px;
}

  .mobile-sidebar {
    width: 80%;
  }
  
  .mobile-nav-links a {
    font-size: 14px;
    font-weight: 700;
  }
  .close-panel{
    font-size: 18px;
    width: 43px;
    height: 43px;
  }
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-overlay {
    width: 100%;
    height: 100%;
  }
  .side-panel {
    width: 60vw;
    min-width: auto;
  }
  
  .company-name {
    text-align: start;
    margin-left: 0;
    font-size: 16px;
  }
  .panel-content h3{
    font-size: 16px;
    font-weight: 700;
  }
  .social-icons{
    margin-top: 20px;
    
  }

  .panel-content form input{
    width: 200px;
    height: 20px;
    font-size: 10px !important;
  }


 .panel-content form button img{
  height: 30px !important;
  width: 30px !important;
 }
  .specialization-text {
   
    width: 80%;
    line-height: 24px;
     font-size: 10px;
  }
  .contact-info span{
    font-size: 16px;
  }
  .contact-info p {
    font-size: 10px;
    line-height: 24px;
  }
  .contact-info p a{
    font-size: 10px;
  }
  .contact-info p img{
    margin-top: 6px;
    width: 10px;
    height: 10px;
  }
  
  
  .social-icons {
    gap: 8px;
  }
  
  .social-icons a {
    width: 40px;
    height: 40px;
  }
  
  .social-icons img {
    width: 20px;
    height: 20px;
  }
  .side-panel.open{
    width: 290px;
  }
}
@media (max-width: 480px){
  .top-header {
    padding:10px 15px;
    /* border: 2px solid red; */
    
  }
  .left a{
    /* border: 2px solid red; */
    font-size: 8px;
  }
  .right a{
    /* border: 1px solid red; */
    font-size: 8px;
  }
  /* .top-header img{
    width: 15px;
    height: 15px;
  } */
  .settings-button{
    padding: 5px;
  }
  .left a{
    gap: 5px;
  }
  .right{
    gap: 5px;
  }
  .left a img{
    margin: 0;
  }
 
  .header{
    /* border: 1px solid red; */
    top: 30px;
    padding: 0;
    height: 42px;
  }
  .header-content{
    margin: auto;
    height: 100%;
    /* border: 1px solid red; */
  }
  .logo-container img{
    height: 40px;
  }
  .hamburger-img{
    height: 15px;
    width: 15px;
  }
  .hamburger-icon-wrapper{
    height: 20px;
    width: 35px;
  }
  .search-toggle{
    height: 25px;
    width: 25px;
  }
 
}
@media (min-width: 2560px) {
  .side-panel {
    width: 30vw;
  }
  .contact-info{
    gap: 2vw;
  }
  .contact-info p{
    line-height: 2vw;
    
    width: 100%;
    /* padding: 0 1vw; */
  }
  .contact-info p a{
    line-height: 2vw;
  }
  .social-icons a{
    width: 3vw;
    height: 3vw;
  }
  .social-icons a img{
    width: 1.5vw;
    height: 1.5vw;
  }
  /* .panel-content h3{
    font-size: 2vw;
    font-weight: 600;
  } */


  /* .panel-content form input{
    margin-top: 2vw;
    font-size: 1vw;
    width: 350px;
    height: 100px;
 } */


  /* .panel-content form>button>img{
    width: 70px;
  } */
}




