/* Reset and Base Styles */
/* Standard syntax */
::selection {
  background: #ff0000; /* highlight color */
  color: #000000; /* text color */
}
/* Webkit (Safari, old Chrome) */
::-webkit-selection {
  background: #ff0000;
  color: #000000;
}
/* Mozilla (older Firefox versions, though modern ones use ::selection) */
::-moz-selection {
  background: #ff0000;
  color: #000000;
}

a,body,div,h1,h2,h3,h4,h5,h6,html,img,li,nav,p,section,span,ul {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

body {
  font-family: "Inter";
  line-height: 1;
}

ul {
  list-style: none;
}

/* Navigation Bar */
.nav-section {
  width: 100%;
}

.storage-navbar {
  width: 100%;
  height: 99px;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.storage-navbar__container {
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.storage-navbar__logo {
  width: 20%;
  height: 70px;
  display: flex;
  align-items: center;
}

.logo-image {
  height: 150px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.storage-navbar_wrapper {
  display: flex;
  width: 80%;
}

.storage-navbar__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 40px);
}

.storage-navbar__menu-item {
  font-family: "Inter";
  font-weight: 400;
  font-size: clamp(14px, 1.3vw, 20px);
  color: #000;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* Dropdown Menu */
.storage-navbar__dropdown {
  display: flex;
  align-items: center;
  gap: 5px;
}

.storage-navbar__dropdown-icon {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.storage-navbar__dropdown-icon.active {
  transform: rotate(180deg);
}

.storage-navbar__dropdown-content {
  position: absolute;
  width: 1266px;
  height: 526px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(rgba(147, 147, 147, 0.55) 0%, rgba(47, 44, 44, 0.45) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1001;
}

.storage-navbar__dropdown-content.active {
  opacity: 1;
  visibility: visible;
}

.storage-navbar__dropdown-header {
  padding: 10px 20px;
}

.storage-navbar__dropdown-title {
  margin: 10px 0;
  height: 26px;
  font-family: "Inter";
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ff0000;
}

.storage-navbar__dropdown-divider-horizontal {
  width: 720px;
  height: 1px;
  background-color: #ffffff;
  opacity: 70%;
}

.storage-navbar__dropdown-columns {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 15px 20px;
  padding-bottom: 0;
}

.storage-navbar__dropdown-column {
  display: flex;
  flex-direction: column;
  width: 280px;
  padding: 10px;
}

.storage-navbar__dropdown-divider-vertical-1 {
  opacity: 70%;
  width: 1px;
  height: 435px;
  position: relative;
  top: -50px;
  background-color: #ffffff;
}

.storage-navbar__dropdown-divider-vertical-2 {
  width: 1px;
  height: 435px;
  position: relative;
  top: -50px;
  background-color: #ffffff;
  opacity: 70%;
}

.storage-navbar__dropdown-subtitle {
  width: 135px;
  height: 26px;
  margin-top: 10px;
  margin-left: 71px;
  font-family: "Inter";
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000;
  margin-bottom: 30px;
}

.storage-navbar__dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.storage-navbar__dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.storage-navbar__dropdown-bullet {
  width: 7px;
  height: 7px;
  background-color: #000000;
}

.storage-navbar__dropdown-link {
  font-family: "Inter";
  font-weight: 400;
  font-size: clamp(14px, 1.3vw, 20px);
  line-height: 100%;
  letter-spacing: 0%;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.storage-navbar__dropdown-link:hover {
  color: #000;
}

.storage-navbar__dropdown-feature {
  width: 343px;
  margin: 50px;
  margin-top: 0;
}

.storage-navbar__dropdown-feature:last-child {
  width: 343px;
  margin: 50px;
  margin-top: 0;
  position: relative;
  top: -60px;
}

.storage-navbar__dropdown-image-container {
  width: 343px;
  height: 227px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: opacity 0.5s ease;
}

.storage-navbar__dropdown-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storage-navbar__dropdown-description {
  width: 326px;
  font-family: "Inter";
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #000;
  margin-bottom: 20px;
}

.storage-navbar__dropdown-know-more {
  height: 26px;
  font-family: "Inter";
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */
.storage-navbar__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: clamp(14px, 1.3vw, 20px);
}

.storage-navbar__broacher-btn {
  width: 150px;
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.77);
  border-radius: 10px;
  cursor: pointer;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.storage-navbar__broacher-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.storage-navbar__contact-btn {
  width: 150px;
  height: 50px;
  background-color: #000000;
  color: #fff;
  border: 1px solid #000000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.storage-navbar__contact-btn:hover {
  background-color: #fff;
  color: #000;
}

/* Mobile Toggle */
.storage-navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1002;
}

.storage-navbar__toggle span {
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.storage-navbar__toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.storage-navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.storage-navbar__toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
.storage-mobile-menu {
  background: linear-gradient(rgba(127, 127, 127, 1), rgba(47, 44, 44, 1));
  position: fixed;
  top: 99px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 99px);
  z-index: 999;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.storage-mobile-menu.active {
  right: 0;
}

.storage-mobile-menu__container {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.storage-mobile-menu__item {
  font-family: "Inter";
  font-weight: 400;
  font-size: 20px;
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  padding: 15px 0;
}

.storage-mobile-menu_heading {
  color: rgba(255, 255, 255, 0.71);
}

.storage-mobile-menu__dropdown {
  position: relative;
}

.storage-mobile-menu__dropdown-icon {
  transition: transform 0.3s ease;
}

.storage-mobile-menu__dropdown.active .storage-mobile-menu__dropdown-icon {
  transform: rotate(180deg);
}

.storage-mobile-menu__dropdown-content {
  display: none;
  padding: 10px 0 10px 20px;
  flex-direction: column;
  gap: 15px;
  border-radius: 8px !important;
  margin-top: 10px !important;
}

.storage-mobile-menu__item_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.storage-mobile-menu__dropdown.active .storage-mobile-menu__dropdown-content {
  display: flex;
}

.storage-mobile-menu__dropdown-link {
  font-family: "Inter";
  font-weight: 400;
  font-size: 22px;
  color: #fff !important;
  text-decoration: none;
  padding: 5px 0;
}

.storage-mobile-menu__broacher {
  margin-top: 10px;
  border: 1px solid rgba(0, 0, 0, 0.77);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}

.storage-mobile-menu__contact {
  margin-top: 10px;
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  border: none;
}

/* Social Links Container - Fixed for responsive design */
.social-links-container {
  position: fixed;
  left: -28px;
  top: 40%;
  width: 110px;
  height: 238px;
  background-color: rgba(255, 255, 255, 0.441);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  border-radius: 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.social-link {
  position: relative;
  cursor: pointer;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.phone-icon {
  width: 60px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* Responsive Styles */
@media (min-width: 1025px) and (max-width: 1400px) {
  .storage-navbar__dropdown-content {
    width: 1000px;
  }
  .storage-navbar__dropdown-divider-horizontal {
    width: 500px;
  }
}

@media (min-width: 992px) and (max-width: 1024px) {
  .storage-navbar__dropdown-content {
    width: 900px;
  }
  .storage-navbar__dropdown-divider-horizontal {
    width: 600px;
  }
  .storage-navbar__buttons {
    right: 10px;
  }
  .storage-navbar__broacher-btn,
  .storage-navbar__contact-btn {
    width: 150px;
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .storage-navbar__container {
    justify-content: space-between;
  }
  .storage-navbar__menu {
    display: none;
  }
  .storage-navbar__buttons {
    display: none;
  }
  .storage-navbar__toggle {
    display: flex;
    position: static;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .storage-navbar {
    height: 90px;
  }
  .storage-mobile-menu {
    top: 90px;
    height: calc(100vh - 90px);
  }
}

@media (max-width: 767px) {
  .storage-navbar {
    height: 80px;
  }
  .storage-navbar__container {
    padding: 0 15px;
  }
  .storage-mobile-menu {
    top: 80px;
    height: calc(100vh - 80px);
  }
  .storage-mobile-menu__dropdown-link {
    font-size: 18px;
  }
  .logo-image {
    height: 60px;
  }
}

@media (max-width: 576px) {
  .storage-navbar {
    height: 70px;
  }
  .storage-mobile-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }
  .logo-image {
    height: 65px;
  }
  .storage-mobile-menu__item {
    font-size: 22px;
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
 .storage-mobile-menu__item {
    font-size: 24px;
  }
   .storage-mobile-menu__dropdown-link {
    font-size: 20px;
  }
}


/* FIXED: Responsive Social Links Container */
/* Tablet View (768px to 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
  .social-links-container {
    width: 80px;
    height: 180px;
    left: -20px;
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
  }
  
  .social-icon {
    width: 30px;
    height: 30px;
  }
  
  .phone-icon {
    width: 45px;
    height: 35px;
  }
  
  .social-icon img {
    width: 85%;
    height: 85%;
  }
}

/* Mobile View (up to 767px) */
@media (max-width: 767px) {
  .social-links-container {
    width: 60px;
    height: 140px;
    left: -15px;
    top: 35%;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 15px;
  }
  
  .social-icon {
    width: 25px;
    height: 25px;
  }
  
  .phone-icon {
    width: 35px;
    height: 28px;
  }
  
  .social-icon img {
    width: 80%;
    height: 80%;
  }
}

/* Extra Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .social-links-container {
    width: 50px;
    height: 120px;
    left: -12px;
    top: 30%;
    padding: 8px 0;
    border-radius: 12px;
  }
  
  .social-icon {
    width: 20px;
    height: 20px;
  }
  
  .phone-icon {
    width: 28px;
    height: 22px;
  }
  
  .social-icon img {
    width: 75%;
    height: 75%;
  }
}

/* Very Small Mobile (up to 360px) */
@media (max-width: 360px) {
  .social-links-container {
    width: 45px;
    height: 110px;
    left: -10px;
    top: 25%;
    padding: 6px 0;
  }
  
  .social-icon {
    width: 18px;
    height: 18px;
  }
  
  .phone-icon {
    width: 25px;
    height: 20px;
  }
  
  .social-icon img {
    width: 70%;
    height: 70%;
  }
}

/* Mobile Menu Buttons */
.storage-mobile-menu__broacher {
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.77);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  background-color: transparent;
  color: #fff !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.storage-mobile-menu__broacher:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.storage-mobile-menu__contact {
  margin-top: 10px;
  background-color: #000;
  color: #fff !important;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  border: 1px solid #000;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.storage-mobile-menu__contact:hover {
  background-color: #333;
}

.mobile_Quick_Links{
  font-size: 30px ;
  
  
}

@media (max-width: 767px) {
.mobile_Quick_Links{
  font-size: 27px ;
  
  
}
}
/*

    .social-links-container {
      opacity: .5;
       transition: opacity 0.3s ease-in-out; 
    }

 .social-links-container:hover {
      opacity: 1 ;
    }*/