/* Hide scrollbar for Chrome, Safari, and Opera */
::-webkit-scrollbar {
  display: none;
}

/* 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;
}

/* Hide scrollbar for IE, Edge, and Firefox */
html {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Inter";
  overflow-x: hidden;
  background-color: white;
  overscroll-behavior-y: none;
}

/* Hero Section Styles */
.hero-section {
  position: fixed;
  width: 100%;
  min-height: 100vh; /* Changed from height to min-height */
  min-height: calc(100vh + 200px); /* Added extra space for zoom levels */
  background-color: #f6f6f6;
  padding-bottom: 50px;
  padding-top: 100px;
  display: flex;
  overflow: hidden; /* Added to prevent content overflow */
}

.hero-content {
  position: relative;
  z-index: 4;
  padding-top: 50px;
  padding-left: 100px;
  max-width: 60%; /* Added to ensure content doesn't overflow */
}

.hero-heading {
  width: min(953px, 90vw); /* Made responsive */
  height: auto; /* Changed from fixed height */
  min-height: 12vh; /* Minimum height maintained */
  font-weight: 600;
  font-size: 12vh; /* Made font size responsive */
  line-height: 1.2; /* Changed to relative line height */
  letter-spacing: 0;
  margin: 0;
  color: #000;
}

.heading-line {
  height: auto; /* Changed from fixed height */
  min-height: 100px; /* Minimum height maintained */
  white-space: nowrap;
  overflow: hidden;
}

.heading-line-mobile {
  display: none;
}

@media (max-width: 1370px) {
  .hero-content {
    padding-top: 10px;
    padding-left: 100px;
  }
}

@media (max-width: 540px) {
  .heading-line-mobile {
    display: block;
  }
  .heading-line:first-of-type > span:nth-of-type(2) {
    display: none;
  }

  .hero-content {
    padding-left: 20px;
    max-width: 95%;
  }
}

.hero-heading span {
  transform: translateY(-100%);
  display: inline-block;
  transition: all 0.5s ease-out;
}

.hero-heading span.show {
  transform: translateY(0);
}

.hero-heading .highlight {
  color: #b0b0b0;
}

.hero-paragraph {
  width: min(600px, 90%); /* Made responsive */
  height: auto; /* Changed from fixed height */
  margin-top: 2vh;
  font-weight: 400;
  font-size: 2.5vh; /* Made font size responsive */
  line-height: 1.45; /* Changed to relative line height */
  letter-spacing: 0;
  color: rgba(0, 0, 0, 1);
}

.book-now-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 214px;
  height: 6vh;
  margin-top: 4vh;
  margin-bottom: 2vh; /* Added bottom margin for safety */
  background-color: #000000;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
  transition: transform 0.3s ease;
  position: relative; /* Added to ensure proper positioning */
  z-index: 5; /* Higher z-index to stay above other elements */
}

.book-now-btn:hover {
  transform: scale(1.05);
}

/* Vector lines with SVG */
.vector-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  overflow: visible;
}

.vector-lines svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 2s forwards, gradientMove 10s infinite linear;
}

.line-1 {
  animation-delay: 0s, 2s;
}

.line-2 {
  animation-delay: .2s, 2.2s;
}

.line-3 {
  animation-delay: .4s, 2.4s;
}

.line-4 {
  animation-delay: .6s, 2.6s;
  height: 120%;
}

.line-5 {
  animation-delay: .8s, 2.8s;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes gradientMove {
  0% {
    stroke: rgba(255, 180, 0, 0.4);
  }
  25% {
    stroke: rgba(0, 128, 0, 0.2);
  }
  50% {
    stroke: rgba(75, 0, 130, 0.2);
  }
  75% {
    stroke: rgba(255, 0, 0, 0.2);
  }
  100% {
    stroke: rgba(255, 165, 0, 0.2);
  }
}

/* Fixed hero image positioning */
.hero-image {
  position: absolute;
  top: 99px;
  /* Changed from right: -15px to right: 0 to prevent overflow */
  right: 0;
  width: 60%;
  z-index: 3;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.hero-image-up {
  transform: translate(50%, -50%);
  transition: all 1.3s ease-in;
}

.hero-image-down {
  transform: translate(-50%, 50%);
  transition: all 1.1s ease-out;
}

.hero-image-up.show,
.hero-image-down.show {
  transform: translate(0, 0);
}

/* Additional responsive fixes */
@media (max-width: 1200px) {
  .hero-content {
    padding-left: 50px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: calc(100vh + 300px); /* More space for mobile */
  }

  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-image {
    width: 70%;
    /* Changed from right: -30px to right: 0 to prevent mobile overflow */
    right: 0;
  }
}

.block-2 {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: black; /* changed to black to fix white line issue */
}

/* Pricing Section Styles */
.pricing-section {
  position: relative;
  top: 0;
  width: 100%;
  min-height: 100vh;
  background-color: black;
  overflow: hidden;
  margin-bottom: 20px;
}

.pricing-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  /* height: 100vh; */
  display: flex;
  flex-direction: column;
}

.priority-text {
  position: relative;
  width: auto;
  max-width: 500px;
  margin-top: 129px;
  margin-left: 200px;
  font-family: "Georgia";
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  line-height: 100%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 1);
}

.horizontal-line {
  position: relative;
  width: 100%;
  max-width: 1540px;
  height: 1px;
  margin-top: 24px;
  margin-bottom: 30px;
  margin-left: 0;
  background-color: #ff0000;
}

.pricing-content {
  position: relative;
  width: calc(100% - 378px);
  max-width: 1426px;
  /* margin-top: 73px; */
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 550px;
}

.pricing-text-container {
  width: 100%;
  text-align: center;
  height: 100%;
}

.pricing-text {
  font-family: "Inter";
  font-weight: 500;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #88888880;
  /* opacity: 0; */
  transform: translateY(50px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 10px;
}

.pricing-text.visible {
  opacity: 1;
  transform: translateY(0);
}
.pricing-text span {
  /* Added smooth transition for color changes */
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #88888880;
}

.pricing-text span.filled {
  color: #ffffff;
}

.pricing-text .white-text {
  color: #ffffff;
}

.pricing-text .gray-text {
  color: #88888880;
}

/* IMPROVED: Added animation states for better visual feedback */
.pricing-section.scroll-locked {
  /* Visual indicator that scroll is locked */
}

.pricing-text span.filling {
  /* Intermediate state during filling animation */
  color: #cccccc;
}

/* Mobile responsive styles */
@media (max-width: 932px) {
  .pricing-section {
    min-height: auto; /* Remove min-height for mobile */
  }

  .pricing-container {
    height: auto; /* Remove fixed height for mobile */
    padding-bottom: 40px; /* Add some padding at the bottom */
  }

  .priority-text {
    margin-top: 60px;
    margin-left: 20px;
    font-size: 22px;
  }

  .horizontal-line {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-top: 15px;
  }

  .pricing-content {
    width: calc(100% - 40px);
    /*margin-top: 40px;*/
    height: 380px;
  }

  .hero-image {
    /* width: 70%; */
    top: auto;
    bottom: 0;
    right: -10px;
  }
}

/* iPhone XR, 12 Pro, 14 Pro Max specific fixes */
@media (min-width: 375px) and (max-width: 428px) {
  .pricing-container {
    padding-bottom: 30px;
  }

  .pricing-text {
    font-size: 32px;
  }
}

/* Pixel 7, S20 Ultra specific fixes */
@media (min-width: 360px) and (max-width: 412px) {
  .pricing-container {
    padding-bottom: 30px;
  }

  .pricing-text {
    font-size: 30px;
  }
}

/* Fold 5 specific fixes */
@media (max-width: 359px) {
  .pricing-container {
    padding-bottom: 25px;
  }

  .pricing-text {
    font-size: 26px;
  }
}

/* A51/71 specific fixes */
@media (min-width: 412px) and (max-width: 450px) {
  .pricing-container {
    padding-bottom: 30px;
  }
}

/* Tablet devices (iPad mini/air/pro, Surface Pro) */
@media (min-width: 768px) and (max-width: 1024px) {
  .pricing-section {
    min-height: auto;
  }

  .pricing-container {
    height: auto;
    padding-bottom: 60px;
  }

  .priority-text {
    margin-top: 80px;
    margin-left: 40px;
  }

  .horizontal-line {
    width: calc(100% - 80px);
    margin-left: 40px;
  }

  .pricing-content {
    width: calc(100% - 80px);
    height: 450px;
  }

  .pricing-text {
    font-size: 50px;
  }
}

/* Larger devices (Surface Duo, Asus Zenbook Fold, Nest Hub/Max) */
@media (min-width: 1025px) and (max-width: 1366px) {
  .pricing-container {
    padding-bottom: 0; /* Keep original desktop layout */
  }

  .priority-text {
    margin-left: 100px;
  }

  .horizontal-line {
    width: calc(100% - 200px);
    margin-left: 100px;
  }
}

/* Storage Section Styles */
.lozy_storage_section_wrapper {
  background-color: #fff;
  width: 100%;
  padding:  0;
  position: relative;
  overflow: hidden;
  min-height: 800px;
}

.lozy_storage_content_container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.lozy_storage_heading_container {
  margin-bottom: 60px;
  padding-left: 170px;
}

.lozy_storage_main_heading {
  font-family: "Inter";
  font-weight: 600;
  font-size: 70px;
  line-height: 75px;
  letter-spacing: 0;
  color: #000;
  margin: 0;
}

.lozy_storage_heading_light {
  font-family: "Inter";
  font-weight: 600;
  font-size: 70px;
  line-height: 75px;
  letter-spacing: 0;
  color: #9e9e9e;
}

.lozy_storage_cards_container {
  display: flex;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 2;
  padding-left: 145px;
  padding-right: 145px;
}

.lozy_storage_card {
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lozy_storage_card_light {
  width: 490px;
  height: auto;
  background-color: #d8d8d8;
}

.lozy_storage_card_dark {
  width: 308px;
  height: auto;
  background-color: #2f2c2c;
}

.lozy_storage_card_image {
  width: 700px;
  height: auto;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.lozy_storage_background_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lozy_storage_card_image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  box-sizing: border-box;
}

.lozy_storage_card_heading {
  font-family: "Inter";
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0;
  color: #000;
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.lozy_storage_card_heading_dark {
  font-family: "Inter";
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.lozy_storage_card_heading_image {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 46px;
  line-height: 100%;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
  margin-bottom: 10px; /* FIXED: Reduced space between heading and text */
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.lozy_storage_card_text {
  font-family: "Inter";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  color: #000;
  margin: 0;
  margin-top: 20px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.lozy_storage_card_text_dark {
  font-family: "Inter";
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
  margin-top: 20px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.lozy_storage_card_text_image {
  font-family: "Inter";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
  margin-top: 10px; /* FIXED: Reduced space between heading and text */
  z-index: 2;
  position: relative;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

/* Arrow Button - FIXED: Sideways arrow, no hover effect */
.arrow-button {
  position: absolute;
  width: 74px;
  height: 74px;
  top: 120px;
  right: 150px;
  z-index: 100;
  cursor: pointer;
  transition: none; /* REMOVED: hover transition */
}

.arrow-circle {
  width: 100%;
  height: 100%;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: none; /* REMOVED: hover transition */
}

.arrow-icon {
  width: 20px;
  height: 20px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg); /* FIXED: Sideways arrow pointing right */
  transition: transform 0.3s ease;
}

/* REMOVED: hover effect */
/* .arrow-button:hover {
    transform: scale(1.1);
} */

.arrow-button.rotated .arrow-icon {
  transform: rotate(135deg); /* FIXED: Sideways arrow pointing left when rotated */
}

/* Storage Categories (Alternate View) Styles */
.storage_categories_container {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
  overflow-x: auto;
}

.storage_category_card {
  width: 266px;
  height: 400px;
  background-color: rgba(216, 216, 216, 1);
  border-radius: 20px;
  padding: 33px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* FIXED: Align content to top */
  box-sizing: border-box;
  cursor: pointer; /* ADDED: Clickable cursor */
  transition: transform 0.2s ease, box-shadow 0.2s ease; /* ADDED: Click effect */
}

.storage_category_card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.storage_category_card:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.storage_category_title {
  font-family: "Inter";
  font-weight: 600;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 1);
  margin: 0;
  margin-bottom: 40px; /* FIXED: Reduced space between heading and text */
  width: auto;
  height: auto;
  max-width: 100%;
}

.storage_category_text {
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 22px; /* FIXED: Improved line height for better readability */
  letter-spacing: 0;
  color: rgba(0, 0, 0, 1);
  margin: 0;
  width: auto;
  height: auto;
  max-width: 100%;
}

/* Media Queries for Responsive Design */
@media (min-width: 1390px) and (max-width: 1920px) {
  .storage_categories_container {
    grid-template-columns: repeat(5, 268.83px);
    justify-content: center;
  }
}

@media (min-width: 1441px) and (max-width: 1920px) {
  .storage_categories_container {
    grid-template-columns: repeat(5, 268.83px);
    justify-content: center;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .hero-section {
    flex-direction: column;
  }
  .hero-heading {
    width: 700px;
    font-size: 80px;
    line-height: 100px;
    height: auto;
  }
  .heading-line {
    height: 80px;
  }
  .hero-paragraph {
    width: 400px;
    font-size: 18px;
    line-height: 28px;
    height: auto;
    margin-top: 5vh;
  }
  .priority-text {
    margin-left: 100px;
    font-size: 22px;
    margin-top: 80px;
  }
  .horizontal-line {
    width: calc(100% - 200px);
    margin-left: 100px;
  }
  .pricing-content {
    width: calc(100% - 165px);
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-text {
    font-size: 60px;
  }
  .lozy_storage_heading_container {
    padding-left: 100px;
  }
  .lozy_storage_main_heading {
    font-size: 60px;
    line-height: 65px;
  }
  .lozy_storage_heading_light {
    font-size: 60px;
    line-height: 65px;
  }
  .lozy_storage_cards_container {
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .lozy_storage_card_light,
  .lozy_storage_card_dark,
  .lozy_storage_card_image {
    width: calc(50% - 30px);
    min-width: 280px;
  }
  .lozy_storage_card_heading {
    font-size: 32px;
    line-height: 1.2;
  }
  .lozy_storage_card_heading_dark {
    font-size: 28px;
    line-height: 1.2;
  }
  .lozy_storage_card_heading_image {
    font-size: 32px;
  }
  .arrow-button {
    right: 100px;
  }
  .storage_categories_container {
    padding-left: 50px;
    padding-right: 50px;
    grid-template-columns: repeat(5, 220px);
    gap: 15px;
    justify-content: center;
  }
  .storage_category_card {
    width: 220px;
    height: 500px;
  }
}

/* Fixed tablet responsive layout issues for 768px-1024px screens */
@media (min-width: 768px) and (max-width: 1024px) {
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .hero-section {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .hero-heading {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    text-align: left;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .locations-section {
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
  }

  .locations-grid {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0;
    box-sizing: border-box;
  }

  .location-btn {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .pricing-section,
  .features-section,
  .testimonials-section {
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
  }
}

@media only screen and (min-width: 768px) and (max-width: 900px) {
  .locations-section {
    margin-top: 0;
    height: auto;
    min-height: 100vh;
    padding: 60px 0;
  }

  .locations-heading {
    margin-left: 40px;
    width: auto;
  }

  .locations-divider {
    width: calc(100% - 80px);
    margin-left: 40px;
    margin-bottom: 60px;
  }

  .locations-row {
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 0 20px;
  }

  .location-card {
    width: calc(33.333% - 15px);
    min-width: 200px;
    max-width: 240px;
    height: 90px;
    margin: 8px;
    padding: 0 25px;
    border-radius: 45px;
  }

  .location-name {
    font-size: 28px;
    line-height: 28px;
  }

  .location-icon {
    width: 40px;
    height: 40px;
  }

  .location-faridabad,
  .location-chennai,
  .location-delhi,
  .location-gurugram,
  .location-bangalore,
  .location-bombay,
  .location-maneswar,
  .location-pune,
  .location-noida,
  .location-chandigarh,
  .location-jaipur {
    width: calc(33.333% - 15px);
    min-width: 200px;
    max-width: 240px;
  }
}

@media only screen and (min-width: 901px) and (max-width: 1024px) {
  .locations-section {
    margin-top: 0;
    height: auto;
    min-height: 100vh;
  }

  .locations-heading {
    margin-left: 50px;
    width: auto;
  }

  .locations-divider {
    width: calc(100% - 100px);
    margin-left: 50px;
  }

  .locations-row {
    justify-content: center;
  }

  .location-card {
    margin: 10px;
    height: 100px;
  }

  .location-name {
    font-size: 32px;
  }

  .location-icon {
    width: 45px;
    height: 45px;
  }

  .location-faridabad,
  .location-chennai,
  .location-delhi,
  .location-gurugram,
  .location-bangalore,
  .location-bombay,
  .location-maneswar,
  .location-pune,
  .location-noida,
  .location-chandigarh,
  .location-jaipur {
    width: calc(50% - 20px);
    max-width: 300px;
  }
}

@media (max-width: 896px) {
  .lozy_storage_card_image_overlay {
    padding: 25px;
    overflow-y: auto;
  }
  .lozy_storage_card_heading_image {
    font-size: 32px;
    margin-bottom: 8px; /* FIXED: Reduced space */
  }
  .lozy_storage_card_text_image {
    font-size: 16px;
    line-height: 22px;
    margin-top: 8px; /* FIXED: Reduced space */
  }
  .lozy_storage_card_image {
    min-height: 400px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    flex-direction: column;
    padding-top: 50px;
  }
  .hero-content {
    padding-left: 15px;
    height: 55vh;
  }
  .heading-line {
    height: 70px;
  }
  .hero-heading {
    width: 100%;
    font-size: 70px;
    line-height: 80px;
    height: auto;
  }
  .hero-paragraph {
    width: 90%;
    font-size: 16px;
    line-height: 24px;
    height: auto;
    margin-top: 30px;
  }
  .book-now-btn {
    width: 180px;
    height: 60px;
    font-size: 18px;
    margin-top: 30px;
  }
  .social-links-container {
    width: 80px;
    height: 200px;
  }
  .social-icon {
    width: 30px;
    height: 30px;
  }
  .social-hover {
    width: 150px;
    height: 50px;
    font-size: 14px;
  }
  .vector-lines {
    width: 100%;
    opacity: 0.5;
  }
  .hero-image {
    position: relative;
    width: 100%;
    height: 40%;
    /* Changed from right: -20% to right: 0 to prevent mobile overflow */
    right: 0;
  }
  .priority-text {
    margin-left: 20px;
    margin-top: 80px;
    font-size: 20px;
  }
  .horizontal-line {
    width: calc(100% - 40px);
    margin-left: 20px;
  }
  .pricing-content {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-text {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .lozy_storage_heading_container {
    padding-left: 20px;
  }
  .lozy_storage_main_heading {
    font-size: 40px;
    line-height: 45px;
  }
  .lozy_storage_heading_light {
    font-size: 40px;
    line-height: 45px;
  }
  .lozy_storage_cards_container {
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
    align-items: center;
  }
  .lozy_storage_card {
    padding: 25px;
  }
  .lozy_storage_card_heading {
    font-size: 28px;
  }
  .lozy_storage_card_heading_dark {
    font-size: 24px;
  }
  .lozy_storage_card_heading_image {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 8px; /* FIXED: Reduced space */
  }
  .lozy_storage_card_text,
  .lozy_storage_card_text_dark,
  .lozy_storage_card_text_image {
    font-size: 16px;
    line-height: 22px;
  }
  .lozy_storage_card_light,
  .lozy_storage_card_dark,
  .lozy_storage_card_image {
    width: 100%;
    max-width: 400px;
    min-height: 250px;
    margin-bottom: 20px;
  }
  .lozy_storage_card_image {
    min-height: 350px;
  }
  .lozy_storage_card_image_overlay {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
  }
  .lozy_storage_card_text_image {
    margin-top: 8px; /* FIXED: Reduced space */
    max-height: 250px;
    overflow-y: auto;
  }
  .arrow-button {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .storage_categories_container {
    padding-left: 20px;
    padding-right: 20px;
    grid-template-columns: 1fr;
    gap: 15px;
    overflow-x: visible;
  }
  .storage_category_card {
    width: 100%;
    height: auto;
    min-height: 300px;
    padding: 25px 20px;
  }
  .storage_category_title {
    width: 100%;
    height: auto;
    margin-bottom: 10px; /* FIXED: Reduced space */
  }
  .storage_category_text {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 414px) and (max-width: 896px) {
  .lozy_storage_card_image {
    min-height: 380px;
  }
  .lozy_storage_card_image_overlay {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .lozy_storage_card_heading_image {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 8px; /* FIXED: Reduced space */
  }
  .lozy_storage_card_text_image {
    font-size: 16px;
    line-height: 1.4;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 5px;
    margin-top: 8px; /* FIXED: Reduced space */
  }
}

.contact-section {
  position: relative;
  width: 100%;
  height: 100vh;
  /* margin-left: 43px; */
  /* margin-top: 5020px; */
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-container {
  position: absolute;
  width: 100%;
  max-width: 1426px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.text-line {
  font-family: "Inter";
  font-weight: 500;
  font-size: 80px;
  line-height: 1.2;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  width: 100%;
  white-space: normal;
  margin-bottom: 10px;
}

.text-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.gray-text {
  color: #aeaeae;
}

.yellow-text {
  color: #ff0000;
}

/* Media Queries for Responsive Design */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-section {
    width: 100%;
    height: 700px;
    margin-left: 0;
    margin-top: 0;
  }

  .text-container {
    width: 90%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .text-line {
    font-size: 60px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-section {
    width: 100%;
    height: 500px;
    margin-left: 0;
    margin-top: 0;
  }

  .text-container {
    width: 90%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .text-line {
    font-size: 36px;
    margin-bottom: 8px;
  }

  /* Ensure text wraps properly on mobile */
  .line2 {
    white-space: normal;
    hyphens: auto;
  }
}

/* Additional media query for very small screens */
@media only screen and (max-width: 480px) {
  .text-line {
    font-size: 28px;
    margin-bottom: 6px;
  }
}

/* Additional media query for landscape orientation on mobile */
@media only screen and (max-height: 500px) and (orientation: landscape) {
  .contact-section {
    height: auto;
    min-height: 100vh;
  }

  .text-container {
    padding: 40px 20px;
  }

  .text-line {
    font-size: 32px;
    margin-bottom: 5px;
  }
}

/* Why Choose Lozy section */
.lazy-container {
  padding: 5%;
  /* padding-left: 0; */
  height: auto;
  min-height: 100vh;
  background: #000;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.grid-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 50px 50px;
  z-index: -1;
}
.why-choose-section {
  margin-left: 3%;
  padding: 0 40px 5% 5%;
  position: relative;
  height: auto;
  width: 100%;
}
.section-title {
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 30px;
  margin-left: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", Times, serif;
}
.feature-divider {
  width: 100%;
  height: 1px;
  min-height: 1px;
  background-color: #ff0000;
}
.content-wrapper {
  display: flex;
  gap: 30px;
  height: auto;
  padding: 2rem 0;
  width: 100%;
}
.lazy-left-content {
  position: relative;
  flex: 1.2;
  height: auto;
  width: 40%;
}
.lazy-left-content img {
  position: absolute;
  top: 35%;
  /* Changed from left: -10% to left: 0 to prevent left side overflow */
  left: 0;
  width: 100%;
  height: 70vh;
  z-index: 1;
}
.lazy-left-content h3 {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  margin-top: 70px;
  max-width: 600px;
  margin-left: 16%;
}
.highlight {
  color: #aaa;
}
.lazy-right-content {
  flex: 1;
  color: #fff;
  min-width: 300px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 3vh;
  height: 75vh;
}
.feature-box-outer {
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 120px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #222;
}
.feature-box {
  padding: 20px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  min-height: 120px;
  width: 100%;
}
.feature-box-divider {
  width: 1px;
  min-width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  height: 80%;
}
.icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}
.icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-text {
  max-width: 75%;
}
.feature-text p {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.8;
}

/* Why Choose Lozy Section Media Queries */
@media (min-width: 1600px) and (max-width: 1980px) {
  .feature-text p {
    font-size: 28px;
  }
  .lazy-left-content h3 {
    font-size: 72px;
  }
  .icon {
    margin-left: 10px;
    margin-right: 30px;
  }
}
@media (max-width: 1300px) {
  .lazy-container {
    min-height: unset;
  }
  .lazy-left-content img {
    top: 10%;
    left: 0%;
  }
  .lazy-left-content h3 {
    font-size: 48px;
    margin-top: 20px;
  }
}
@media (max-width: 1024px) {
  .lazy-container {
    min-height: unset !important;
    height: auto !important;
  }
  .lazy-left-content {
    width: 40%;
  }
  /* Hide vector image for tablet and mobile */
  .lazy-left-content img {
    display: none;
  }
  .lazy-left-content h3 {
    position: relative;
    top: auto;
    margin-top: 30px;
    font-size: 42px;
    max-width: 100%;
    margin-left: 15%;
  }
  .lazy-right-content {
    width: 50%;
  }
  .feature-text p {
    font-size: 18px;
  }
}
@media (max-width: 1024px) and (min-height: 1300px) {
  .feature-grid {
    max-height: 60vh;
  }
}
@media (max-width: 1024px) and (max-height: 600px) {
  .feature-box-outer {
    min-height: 100px;
  }
  .feature-box {
    min-height: 100px;
  }
  .feature-text p {
    font-size: 14px;
  }
  .book-now-btn {
    height: 10vh;
  }
}
@media (max-width: 860px) {
  .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .lazy-left-content {
    width: 100%;
    margin-bottom: 30px;
  }
  .lazy-left-content h3 {
    position: relative;
    top: auto;
    left: auto;
    font-size: 36px;
    width: 100%;
    margin: 0;
    margin-left: 5%;
    margin-right: 5%;
    text-align: left;
    line-height: 1.2;
  }
  .lazy-right-content {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 20px;
  }
  .feature-box {
    width: 100%;
    min-height: 100px;
  }
  .feature-box-outer {
    min-height: 100px;
  }
  .icon {
    height: 22px;
    width: 22px;
  }
}
@media (max-width: 576px) {
  .lazy-left-content h3 {
    font-size: 28px;
    margin-left: 5%;
    margin-right: 5%;
    line-height: 1.3;
  }
  .section-title {
    font-size: 22px;
  }
  .feature-text p {
    font-size: 14px;
  }
  .feature-box-outer {
    flex-direction: column;
    height: auto;
    padding: 15px;
  }
  .feature-box {
    width: 100%;
    min-height: 80px;
    flex-direction: column;
    text-align: center;
  }
  .feature-box-divider {
    width: 80%;
    height: 1px;
    min-height: 1px;
    min-width: unset;
    margin: 10px 0;
  }
  .icon {
    width: 36px;
    height: 36px;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .lazy-left-content h3 {
    position: relative;
    top: auto;
    left: auto;
    font-size: 24px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    line-height: 1.4;
    padding: 20px 0;
  }
  .content-wrapper {
    gap: 30px;
  }
}

/* Blog Section Styles */
.blog-section {
  padding: 80px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.blog-container {
  width: 80%;
  margin: 0 auto;
  padding: 0;
}

.blog-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.blog-heading {
  font-family: Georgia;
  font-weight: 400;
  font-style: italic;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
  margin-bottom: 20px;
}

.blog-view-more {
  width: 120px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #000000;
  background-color: transparent;
  color: #000000;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.blog-view-more:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.blog-divider {
  width: 100%;
  height: 1px;
  background: none;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.6);
  margin: 0 0 30px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 100%;
}

.blog-card {
  width: 100%;
  height: 345px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  filter: brightness(0.7);
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
}

.default-image {
  opacity: 1;
}

.hover-image {
  opacity: 0;
}

.blog-card:hover .default-image {
  opacity: 0;
}

.blog-card:hover .hover-image {
  opacity: 1;
}

.blog-card-content {
  position: absolute;
  bottom: 30px;
  left: 0;
  padding: 0 20px;
  width: 100%;
  z-index: 2;
  text-align: center; /* Center align all content */
}

.blog-card-title {
  font-family: "Inter";
  font-weight: 800;
  font-size: 22px;
  line-height: 120%; /* Improved line height for better readability */
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 12px;
  text-align: center; /* Fixed: Now center aligned like description */
}

.blog-card-description {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 120%; /* Improved line height for better readability */
  letter-spacing: 0%;
  color: #ffffff;
  text-align: center;
}

/* Enhanced Media Queries for Better Responsiveness */

/* Large Desktop */
@media only screen and (min-width: 1441px) {
  .blog-container {
    width: 75%;
  }

  .blog-card-title {
    font-size: 24px;
  }

  .blog-card-description {
    font-size: 16px;
  }
}

/* Desktop */
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .blog-container {
    width: 80%;
  }
}

/* Tablet Landscape */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .blog-container {
    width: 85%;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .blog-card {
    height: 320px;
  }

  .blog-card-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .blog-card-description {
    font-size: 14px;
  }

  .blog-card-content {
    bottom: 25px;
    padding: 0 15px;
  }
}

/* Tablet Portrait */
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .blog-section {
    padding: 60px 0;
  }

  .blog-container {
    width: 90%;
  }

  .blog-heading {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .blog-card {
    height: 280px;
  }

  .blog-card-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .blog-card-description {
    font-size: 13px;
  }

  .blog-card-content {
    bottom: 20px;
    padding: 0 12px;
  }
}

/* Mobile */
@media only screen and (max-width: 480px) {
  .blog-section {
    padding: 40px 0;
  }

  .blog-container {
    width: 95%;
  }

  .blog-heading {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .blog-divider {
    margin: 0 0 20px 0;
  }

  .blog-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .blog-view-more {
    align-self: flex-end;
    width: 100px;
    height: 35px;
    font-size: 14px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .blog-card {
    height: 250px;
  }

  .blog-card-title {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 130%;
  }

  .blog-card-description {
    font-size: 12px;
    line-height: 130%;
  }

  .blog-card-content {
    bottom: 15px;
    padding: 0 10px;
  }
}

/* Extra Small Mobile */
@media only screen and (max-width: 320px) {
  .blog-card {
    height: 220px;
  }

  .blog-card-title {
    font-size: 14px;
  }

  .blog-card-description {
    font-size: 11px;
  }
}

/* Clients Say Section Styles */
.clients-say-section {
  background-color: #000;
  position: relative;
  top: 0;
  height: 300vw;
  width: 100vw;
}



.clients-say-section-sticky {
  width: 100%;
  padding-left: 9vw;
  padding-right: 9vw;
  padding-top: 3%;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
}

.scroll-up-button {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  background-color: #999999;
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
  position: relative;
  z-index: 10;
  top: 50vh;
  left: 85vw;
  right: 20px;
  height: 90px;
  width: 90px;
  border: none;
  font-family: "Inter";
  font-weight: 600;
  gap: 10px;
  cursor: pointer;
}

.scroll-up-button img {
  height: 20px;
  width: auto;
}

.clients-say-content-layer {
  width: 100%;
  height: 100%;
}

.clients-say-heading {
  color: #fff;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  margin-left: 0;
  margin-bottom: 20px;
  max-width: 90vw;
}

.clients-say-divider {
  width: 100%;
  height: 1px;
  margin-top: 24px;
  margin-bottom: 30px;
  background-color: #ff0000;
  border: none;
}

.clients-say-horizontal-scroll-container {
  height: 80vh;
  display: flex;
  overflow-x: hidden;
  width: 300vw;
  will-change: transform;
  transition: transform 0.3s ease-out;
}

.clients-say-container {
  height: 100%;
  width: 82vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-say-grid {
  aspect-ratio: 800/ 500;
  width: 60vw;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 5fr 4fr;
  row-gap: 15px;
  column-gap: 15px;
}

.clients-say-quote {
  height: 100%;
  width: 100%;
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  background-color: rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 2vw;
  gap: 50px;
  padding-left: 12%;
  padding-right: 12%;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.clients-say-quote-icon {
  height: 130px;
  width: 130px;
}

.clients-say-quote-icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.clients-say-image {
  height: 100%;
  width: 100%;
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  border-radius: 30px;
}

.clients-say-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.clients-say-brand-image {
  height: 100%;
  width: 100%;
  grid-row: 1 / 2;
  grid-column: 3 / 4;
  border-radius: 30px;
  background-color: #fff;
}

.clients-say-info {
  height: 100%;
  width: 100%;
  grid-row: 2 / 3;
  grid-column: 2 / 4;
  background-color: rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-weight: 600;
  gap: 10px;
}

.clients-say-name {
  font-size: 30px;
  color: #fff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.clients-say-description {
  line-height: 1.2;
  letter-spacing:normal;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Media Queries for Text Overflow Fixes */
@media (max-width: 1366px) {
  .clients-say-quote {
    font-size: 1.6vw;
    gap: 35px;
    padding-left: 8%;
    padding-right: 8%;
  }

  .clients-say-name {
    font-size: 26px;
  }

  .clients-say-description {
    font-size: 14px;
  }
}

@media (max-width: 1280px) {
  .hero-content {
    padding-top: 0px;
    padding-left: 0px;
    transform: scale(0.8);
  }

  .pricing-section {
    transform: scale(0.9);
  }

  .lozy_storage_content_container {
    transform: scale(0.9);
  }

  .hero-section {
    padding-top: 80px;
  }
  .clients-say-quote {
    font-size: 1.4vw;
    gap: 30px;
    padding-left: 6%;
    padding-right: 6%;
  }

  .clients-say-name {
    font-size: 24px;
  }

  .clients-say-description {
    font-size: 13px;
  }
  .book-now-btn {
    height: 8vh;
  }
}

@media (max-width: 1024px) and (max-height: 600px) {
  .clients-say-quote-icon {
    width: 50px;
    height: 50px;
  }
  .clients-say-quote {
    gap: 20px;
    font-size: 1.2vw;
  }
}



@media (max-width: 1024px) and (min-height: 620px) {
  .clients-say-horizontal-scroll-container {
    gap: 20vw;
  }

  .scroll-up-button {
    height: 70px;
    width: 70px;
    font-size: 17px;
    gap: 0;
    left: 80vw;
  }

  .scroll-up-button img {
    width: 10px;
    height: auto;
  }

  .clients-say-heading {
    font-size: 18px;
  }

  .clients-say-grid {
    aspect-ratio: 6 / 5;
    width: 80vw;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 5fr 4fr;
    
    /*row-gap: 3vw;
    column-gap: 3vw;*/
  }

  .clients-say-quote {
    font-size: 1.8vh;
    gap: 30px;
    border-radius: 10px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .clients-say-image {
    border-radius: 10px;
  }

  .clients-say-image img {
    border-radius: 10px;
  }

  .clients-say-quote-icon {
    height: 60px;
    width: 60px;
  }

  .clients-say-brand-image {
    border-radius: 10px;
  }

  .clients-say-info {
    border-radius: 10px;
  }

  .clients-say-name {
    font-size: 22px;
  }

  .clients-say-description {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .clients-say-quote {
    font-size: 1.6vh;
    gap: 25px;
    padding-left: 4%;
    padding-right: 4%;
  }

  .clients-say-name {
    font-size: 20px;
  }

  .clients-say-description {
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .scroll-up-button {
    font-size: 12px;
    left: 70vw;
  }

  .scroll-up-button img {
    width: 10px;
    height: auto;
  }

  .clients-say-heading {
    font-size: 16px;
  }

  .clients-say-quote {
    gap: 20px;
    font-size: 1.4vh;
    padding-left: 3%;
    padding-right: 3%;
  }

  .clients-say-quote-icon {
    height: 50px;
    width: 50px;
  }

  .clients-say-name {
    font-size: 18px;
  }

  .clients-say-description {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .clients-say-quote {
    font-size: 1.2vh;
    gap: 15px;
    padding-left: 2%;
    padding-right: 2%;
  }

  .clients-say-name {
    font-size: 16px;
  }

  .clients-say-description {
    font-size: 9px;
  }
  .clients-say-section-sticky{
  height: 80vh;
  padding-top: 0;
}
.clients-say-horizontal-scroll-container {
    height: 50vh;}

.clients-say-section{
      height: 160vw;
}    
}

@media (max-width: 1024px) and (min-height: 768px) {
    .clients-say-heading {
        font-size:25px;
    }
}
@media (width: 1024px) and (height: 1366px){
.clients-say-heading{
  font-size: 40px;
}
}

/* Locations Section Styles */
.locations-section {
  min-height: 100vh;
  height: auto;
  position: relative;
  width: 100%;
  padding: 60px 0;
  margin-top: 0;
  background-color: #000000;
  z-index: 1;
}

.locations-heading {
  width: 361px;
  height: 30px;
  margin: 0 0 24px 9vw;
  font-family: "Georgia";
  font-weight: 400;
  font-style: italic;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.locations-divider {
  height: 1px;
  min-height: 1px;
  width: 80%;
  margin: 0 0 90px 9vw;
  background-color: #ff0000;
  border: none;
  position: relative;
  z-index: 2;
}

.locations-container {
  position: relative;
  z-index: 2;
}

/* Location Links - Remove underlines and inherit colors */
.location-link {
  text-decoration: none !important;
  color: inherit;
  display: inline-block;
  width: auto;
}

.location-link:hover {
  text-decoration: none !important;
}

.location-link:focus {
  outline: 2px solid #ff0000;
  outline-offset: 2px;
  border-radius: 4px;
  text-decoration: none !important;
}

.location-link:visited {
  color: inherit;
  text-decoration: none !important;
}

.location-link:active {
  color: inherit;
  text-decoration: none !important;
}

/* Location Cards Common Styles */
.locations-row {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  margin: 0 0 30px;
  flex-wrap: wrap;
  gap: 50px;
}

.location-card {
  position: relative;
  height: 100px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 15px 15px 0;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 222, 89, 0.2);
}

.location-name {
  font-family: "Inter";
  font-weight: 600;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 1px;
  color: red;
  margin: 0;
  text-decoration: none !important;
}

.location-link:hover .location-name {
  color: red;
  text-decoration: none !important;
}

.location-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
}

.location-pin-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* User-Friendly Gentle Glow Animation for Linked Locations */
.blink-location {
  animation: gentleGlow 3s ease-in-out infinite;
  position: relative;
  overflow: visible;
}

.blink-location::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 53px;
  background: linear-gradient(
  135deg,
  rgba(255, 0, 0, 0.2),
  rgba(200, 0, 0, 0.1)
);

  opacity: 0;
  z-index: -1;
  animation: softPulse 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

@keyframes gentleGlow {
  0% {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5), 0 0 30px rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
  }
}


@keyframes softPulse {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.02);
  }
  100% {
    opacity: 0;
    transform: scale(0.95);
  }
}

/* Gentle text enhancement for linked locations */
.blink-location .location-name {
  animation: textShimmer 3s ease-in-out infinite;
}

@keyframes textShimmer {
  0% {
    color: red;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
  }
  50% {
    color: red;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
  }
  100% {
    color: red;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
  }
}


/* Subtle icon enhancement */
.blink-location .location-pin-icon {
  animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
  0% {
    filter: drop-shadow(0 0 3px rgba(255, 0, 0, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.6));
  }
  100% {
    filter: drop-shadow(0 0 3px rgba(255, 0, 0, 0.3));
  }
}


/* Enhanced hover effects for linked locations */
.blink-location:hover {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 89, 89, 0.4), 0 0 25px rgba(255, 89, 89, 0.3);
  border-color: rgba(255, 89, 89, 0.5);
}

.blink-location:hover::before {
  animation-play-state: paused;
  opacity: 0.6;
  transform: scale(1.05);
}

.blink-location:hover .location-name {
  animation-play-state: paused;
  color: rgba(255, 150, 150, 1);
  text-shadow: 0 0 15px rgba(255, 89, 89, 0.7);
}

.blink-location:hover .location-pin-icon {
  animation-play-state: paused;
  filter: drop-shadow(0 0 12px rgb(255, 0, 0));
}


/* Smooth click effect */
.blink-location:active {
  transform: translateY(-2px) scale(0.98);
  transition: transform 0.1s ease;
}

/* Responsive Styles */
@media only screen and (min-width: 1601px) and (max-width: 1920px) {
  .location-card {
    height: 110px;
    padding-bottom: 50px;
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .location-name {
    font-size: 40px;
  }

  .locations-row {
    margin-bottom: 70px;
  }

  .locations-divider {
    margin-bottom: 120px;
  }

  .blink-location::before {
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 58px;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1600px) {
  .locations-heading {
    margin-left: 100px;
  }

  .locations-divider {
    width: calc(100% - 200px);
    margin-left: 100px;
  }

  .locations-row {
    justify-content: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .locations-section {
    margin-top: 0;
    height: auto;
    min-height: 100vh;
  }

  .locations-heading {
    margin-left: 50px;
    width: auto;
  }

  .locations-divider {
    width: calc(100% - 100px);
    margin-left: 50px;
  }

  .locations-row {
    justify-content: center;
  }

  .location-card {
    margin: 10px;
    height: 100px;
  }

  .location-name {
    font-size: 32px;
  }

  .location-icon {
    width: 45px;
    height: 45px;
  }

  .location-faridabad,
  .location-chennai,
  .location-delhi,
  .location-gurugram,
  .location-bangalore,
  .location-bombay,
  .location-maneswar,
  .location-pune,
  .location-noida,
  .location-chandigarh,
  .location-jaipur {
    width: calc(50% - 20px);
    max-width: 300px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 900px) {
  .locations-section {
    margin-top: 0;
    height: auto;
    min-height: 10vh;
    padding: 0;
  }

  .locations-heading {
    margin-left: 40px;
    width: auto;
  }

  .locations-divider {
    width: calc(100% - 80px);
    margin-left: 40px;
    margin-bottom: 60px;
  }

  .locations-row {
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 0 20px;
  }

  .location-card {
    width: calc(33.333% - 15px);
    min-width: 200px;
    max-width: 240px;
    height: 90px;
    margin: 8px;
    padding: 0 25px;
    border-radius: 45px;
  }

  .location-name {
    font-size: 28px;
    line-height: 28px;
  }

  .location-icon {
    width: 40px;
    height: 40px;
  }

  .location-faridabad,
  .location-chennai,
  .location-delhi,
  .location-gurugram,
  .location-bangalore,
  .location-bombay,
  .location-maneswar,
  .location-pune,
  .location-noida,
  .location-chandigarh,
  .location-jaipur {
    width: calc(33.333% - 15px);
    min-width: 200px;
    max-width: 240px;
  }
}

@media only screen and (min-width: 901px) and (max-width: 1024px) {
  .locations-section {
    margin-top: 0;
    height: auto;
    min-height: 10vh;
    padding: 0px;
  }

  .locations-heading {
    margin-left: 50px;
    width: auto;
  }

  .locations-divider {
    width: calc(100% - 100px);
    margin-left: 50px;
  }

  .locations-row {
    justify-content: center;
  }

  .location-card {
    margin: 10px;
    height: 100px;
  }

  .location-name {
    font-size: 32px;
  }

  .location-icon {
    width: 45px;
    height: 45px;
  }

  .location-faridabad,
  .location-chennai,
  .location-delhi,
  .location-gurugram,
  .location-bangalore,
  .location-bombay,
  .location-maneswar,
  .location-pune,
  .location-noida,
  .location-chandigarh,
  .location-jaipur {
    width: calc(50% - 20px);
    max-width: 300px;
  }
}

@media only screen and (max-width: 767px) {
  .locations-section {
    margin-top: 0;
    height: auto;
    padding: 40px 0;
  }

  .locations-heading {
    margin-left: 20px;
    width: auto;
    font-size: 22px;
  }

  .locations-divider {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-bottom: 30px;
  }

  .locations-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .location-card {
    width: calc(100% - 40px) !important;
    max-width: 320px;
    height: 80px;
    margin: 10px 0;
    border-radius: 40px;
    padding: 0 20px;
  }

  .location-name {
    font-size: 24px;
    line-height: 24px;
  }

  .location-icon {
    width: 36px;
    height: 36px;
  }

  .blink-location::before {
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 42px;
  }
}

@media (max-width: 1024px) and (max-height: 600px) {
  .locations-section {
    margin-top: 0;
    padding: 30px 0;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  .location-card {
    transition: none;
  }

  .location-card:hover {
    transform: none;
  }

  .blink-location,
  .blink-location::before,
  .blink-location .location-name,
  .blink-location .location-pin-icon {
    animation: none;
  }

  /* Provide alternative visual indication for reduced motion users */
  .blink-location {
    border: 2px solid rgba(255, 222, 89, 0.6);
    box-shadow: 0 0 15px rgba(255, 222, 89, 0.4);
  }

  .blink-location .location-name {
    color: rgba(255, 235, 120, 1);
    text-shadow: 0 0 8px rgba(255, 222, 89, 0.5);
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .location-card {
    border: 2px solid #ff0000;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .location-name {
    color: #ff0000;
  }

  .locations-heading {
    color: #ffffff;
  }

  .locations-divider {
    background-color: #ff0000;
    height: 2px;
  }

  .blink-location {
    border: 2px solid #ff0000;
  }
}

/* Print Styles */
@media print {
  .locations-section {
    background-color: transparent;
    color: #000000;
  }

  .location-card {
    border: 1px solid #000000;
    background-color: transparent;
    box-shadow: none;
  }

  .location-name {
    color: #000000;
  }

  .locations-heading {
    color: #000000;
  }

  .locations-divider {
    background-color: #000000;
  }

  .blink-location,
  .blink-location::before,
  .blink-location .location-name,
  .blink-location .location-pin-icon {
    animation: none;
  }

  .blink-location {
    border: 2px solid #000000;
  }
}

/* Achievements Section */
.achievements-section {
  background-color: #000000;
  padding: 60px 0;
  position: relative;
}

.achievements-container {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 50px; /* Fixed gap instead of space-between */
}

.achievements-title {
  font-family: Georgia;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0;
  color: #ffffff;
  width: 384px;
  height: 45px;
  flex-shrink: 0; /* Prevents title from shrinking */
}

.achievements-gallery {
  display: flex;
  gap: 21px;
}


.achievement-box {
/*  width: 500px;*/
    height: 400px;
  background-color: #d9d9d9;
  flex-shrink: 0;
}

.achievement-image {
/*  width: 100%;*/
  height: 100%;
/*  object-fit: cover;*/
}

/* About Us Section */
.about-section {
  background-color: #000000;
  padding: 60px 0;
  position: relative;
}

.about-container {
  width: 80%;
  max-width: 1730px;
  margin: 0 auto;
}

.about-title {
  font-family: Georgia;
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0;
  color: #ffffff;
  margin-left: 0;
  margin-bottom: 24px;
}

.divider-line {
  width: 100%;
  height: 1px;
  background-color: #ff0000;
  border: 1px solid #ff0000;
  margin-bottom: 55px;
}

.about-content {
  display: flex;
  gap: 116px;
  justify-content: space-between;
}

.about-image-container {
  width: 690px;
  height: 473px;
  flex-shrink: 0;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.about-text-container {
  width: 721px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-paragraph {
  font-family: "Inter";
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0;
  color: #ffffffcc;
}

/* Media Queries for Tablet */


@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .achievements-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: 95%;
  }

  .achievements-title {
    width: auto;
    font-size: 36px;
  }

  .achievements-gallery {
    overflow-x: auto;
    width: 100%;
    padding-bottom: 15px;
  }

 .achievement-box {
  /*  width: 340px;*/
    height: 230px;
  }

  .about-container {
    width: 90%;
  }

  .about-content {
    /* flex-direction: column; */
    gap: 40px;
  }

  .about-image-container {
    width: 50%;
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .about-text-container {
    width: 100%;
  }

  .about-paragraph {
    font-size: 20px;
    line-height: 28px;
  }

  .contact-section {
    margin-top: 80px;
  }

  .text-container {
    transform: translate(-50%, -50%) scale(0.8);
  }

  .locations-row {
    flex-wrap: nowrap;
    transform: scale(0.8);
  }
}

/* Media Queries for Mobile */
@media only screen and (max-width: 767px) {

  .achievements-section{
    padding: 20px 0;
  }
  .achievements-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    width: 95%;
  }

  .achievements-title {
    width: auto;
    font-size: 32px;
  }

  .achievements-gallery {
    overflow-x: auto;
    width: 100%;
    gap: 15px;
    padding-bottom: 10px;
  }

  .achievement-box {
 
    height: 230px;
  }

  .about-container {
    width: 95%;
  }

  .about-title {
    width: auto;
  }

  .about-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-image-container {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .about-text-container {
    width: 100%;
  }

  .about-paragraph {
    font-size: 18px;
    line-height: 26px;
  }
}

/* Large screens */
@media only screen and (min-width: 1280px) and (max-width: 1919px) {
  .about-content {
    gap: 80px;
  }

  .about-image-container {
    width: 45%;
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .about-text-container {
    width: 45%;
  }
}

/* Extra large screens */
@media only screen and (min-width: 1920px) {
  .achievements-container,
  .about-container {
    max-width: 1850px;
  }
}

@media (width:1024px) and (height:1366px){
   .achievement-box {

    height: 330px;
  }
}
/*Our  Vabluable Clients----------------------------start*/
/*
.clients-section {
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
  background-color: #f9f9f9;
}

.clients-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.clients-heading {
  font-family: Georgia;
  font-weight: 400;
  font-style: italic;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
  width: 247px;
  height: 30px;
  margin-left: 60px;
}

.horizontal-line {
  width: calc(100% - 120px);
  height: 1px;
  margin: 24px auto 45px;
  background-color: rgb(255, 239, 15);
  border: none;
  max-width: 1533px;
}

.clients-rows-container {
  position: relative;
  margin-top: 30px;
  padding: 0 60px;
  /* overflow: hidden; 
}

.client-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
  position: relative;
  flex-wrap: wrap;
}

.client-card {
  width: 280px;
  height: 115px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.white-card {
  background: #ffffff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
}

.black-card {
  background: #000000;
}

.client-content {
  display: flex;
  align-items: center;
  padding: 0 25px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.client-logo {
  height: auto;
  max-height: 70%;
  width: auto;
  max-width: 45%;
  object-fit: contain;
  align-items: center;
  margin-left: 35px;
}

.logo-only {
  max-width: 90%;
  margin-right: 0;
}

.client-name {
  font-family: "Inter";
  font-weight: 800;
  font-size: 24px;
  white-space: nowrap;
  margin: 0;
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 55%;
}

.white-text {
  color: #ffffff;
}

/* Media Queries 
@media (min-width: 1025px) and (max-width: 1600px) {
  .pricing-content {
    height: 650px;
  }

  .clients-heading {
    margin-left: 40px;
  }

  .clients-rows-container {
    padding: 0 40px;
  }

  .client-card {
    width: 240px;
    height: 105px;
  }

  .client-name {
    font-size: 22px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .clients-heading {
    margin-left: 30px;
  }

  .horizontal-line {
    width: calc(100% - 80px);
  }

  .clients-rows-container {
    padding: 0 30px;
  }

  .client-card {
    width: 220px;
    height: 95px;
    border-radius: 50px;
  }

  .client-row {
    gap: 18px;
    overflow-x: visible;
    padding-bottom: 10px;
    flex-wrap: nowrap;
  }

  .client-name {
    font-size: 20px;
    max-width: 50%;
  }

  .client-content {
    padding: 0 18px;
  }

  .client-logo {
    max-width: 50%;
    margin-right: 10px;
  }

  .logo-only {
    max-width: 85%;
  }
}

@media (max-width: 767px) {
  .hero-section {
    flex-direction: column;
  }

  .clients-heading {
    margin-left: 20px;
    width: auto;
  }

  .horizontal-line {
    width: calc(100% - 40px);
    margin: 24px auto 30px;
  }

  .clients-rows-container {
    padding: 0 20px;
  }

  .client-card {
    width: 130px;
    height: 50px;
    border-radius: 40px;
  }

  .client-row {
    gap: 12px;
    overflow-x: visible;
    padding-bottom: 10px;
    flex-wrap: nowrap;
  }

  .client-name {
    font-size: 10px;
    max-width: 70%;
  }

  .client-content {
    padding: 0 12px;
  }

  .client-logo {
    max-width: 35%;
    margin-right: 2px;
    margin-left: 3px;
  }

  .logo-only {
    max-width: 80%;
  }
}*/


.clients-section {
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
  background-color: #f9f9f9;
}

.clients-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.clients-heading {
  font-family: Georgia;
  font-weight: 400;
  font-style: italic;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
  width: 247px;
  height: 30px;
  margin-left: 60px;
}

.horizontal-line {
  width: calc(100% - 120px);
  height: 1px;
  margin: 24px auto 45px;
  background-color:#ff0000;
  border: none;
  max-width: 1533px;
}

.clients-rows-container {
  position: relative;
  margin-top: 30px;
  padding: 0 60px;
  overflow: hidden;
}

.client-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
  position: relative;
}

.client-card {
  width: 280px;
  height: 115px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.white-card {
  background: #ffffff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
}

.black-card {
  background: #000000;
}

.client-content {
  display: flex;
  align-items: center;
  padding: 0 25px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.client-logo {
  height: auto;
  max-height: 50%;
  width: auto;
  max-width: 30%;
  object-fit: contain;
  align-items: center;
  margin-left: 35px;
}

.logo-only {
  max-width: 80%;
  margin-right: 0;
}

.client-name {
  font-family: "Inter";
  font-weight: 800;
  font-size: 24px;
  white-space: nowrap;
  margin: 0;
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 55%;
}

.white-text {
  color: #ffffff;
}

/* Media Queries */
@media (min-width: 1025px) and (max-width: 1600px) {
  .pricing-content {
    height: 650px;
  }

  .clients-heading {
    margin-left: 40px;
  }

  .clients-rows-container {
    padding: 0 40px;
  }

  .client-card {
    width: 240px;
    height: 105px;
  }

  .client-name {
    font-size: 22px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .clients-heading {
    margin-left: 30px;
  }

  .horizontal-line {
    width: calc(100% - 80px);
  }

  .clients-rows-container {
    padding: 0 30px;
  }

  .client-card {
    width: 220px;
    height: 95px;
    border-radius: 50px;
  }

  .client-row {
    gap: 18px;
    overflow-x: visible;
    padding-bottom: 10px;
    flex-wrap: nowrap;
  }

  .client-name {
    font-size: 20px;
    max-width: 50%;
  }

  .client-content {
    padding: 0 18px;
  }

  .client-logo {
    max-width: 35%;
    margin-right: 10px;
  }

  .logo-only {
    max-width: 70%;
  }
}

@media (max-width: 767px) {
  .hero-section {
    flex-direction: column;
  }

  .clients-heading {
    margin-left: 20px;
    width: auto;
  }

  .horizontal-line {
    width: calc(100% - 40px);
    margin: 24px auto 30px;
  }

  .clients-rows-container {
    padding: 0 20px;
  }

  .client-card {
    width: 130px;
    height: 50px;
    border-radius: 40px;
  }

  .client-row {
    gap: 12px;
    overflow-x: visible;
    padding-bottom: 10px;
    flex-wrap: nowrap;
  }

  .client-name {
    font-size: 10px;
    max-width: 70%;
  }

  .client-content {
    padding: 0 12px;
  }

  .client-logo {
    max-width: 25%;
    margin-right: 2px;
  }

  .logo-only {
    max-width: 65%;
  }
  .client-logo {

        margin-left: 3px;
  }
}

/*Our Valuable Clients css end*/

/* form section */
/* Form Section */
.form-section {
  width: 100%;
  background: #fff;
  padding: 60px 0;
  margin-top: 50px;
}

.form-heading {
  font-family: "Georgia";
  font-weight: 400;
  font-style: italic;
  font-size: 26px;
  color: #000;
  margin-bottom: 20px;
}

.form-divider {
  width: 100%;
  height: 1px;
  border-top: 1px solid rgba(0, 0, 0, 0.6);
  margin-bottom: 30px;
}

.form-section-heading {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.form-section-heading p {
  color: rgba(0, 0, 0, 0.8);
  width: 60%;
  font-size: 18px;
  line-height: 1.5;
}

.form-section-form {
  background: #000;
  width: 95%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 60px;
  border-radius: 12px;
  position: relative;
}

.call-us {
  color: #fff;
  position: absolute;
  right: 60px;
  top: 40px;
  font-size: 18px;
}

.hello-form-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

#wavy-hand-form-section {
  width: clamp(25px, 3vw, 40px);
  height: auto;
  margin: 0 15px;
  animation: waveHand 2s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes waveHand {
  0%,
  100% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(15deg);
  }
}

.form-input-group {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: center;
}

.form-section-submit-btn {
  background: #fff;
  border: none;
  border-radius: 5px;
  padding: 12px 20px;
  margin: 30px 0 0 0;
  color: #000;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-section-submit-btn:hover {
  background: #f0f0f0;
}

#form-section-send-us-icon {
  width: 24px;
  height: 24px;
}

.form-input-label {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(20px, 3vw, 36px);
  min-width: fit-content;
}

.form-input-field {
  flex: 1;
  height: 45px;
  font-size: 18px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #666;
  color: #fff;
  outline: none;
  padding: 5px 0;
}

.form-input-field::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input-field:focus {
  border-bottom-color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .form-section-form {
    width: 90%;
    padding: 35px 45px;
  }

  .call-us {
    right: 45px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .form-section {
    padding: 40px 0;
  }

  .form-section-heading {
    width: 95%;
  }

  .form-section-heading p {
    width: 100%;
    font-size: 16px;
  }

  .form-section-form {
    width: 95%;
    padding: 30px;
  }

  .form-input-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .form-input-label {
    font-size: 24px;
  }

  .form-input-field {
    width: 100%;
    font-size: 16px;
  }

  .call-us {
    position: static;
    margin-bottom: 20px;
    font-size: 16px;
  }

  .hello-form-text {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .form-section-form {
    padding: 25px 20px;
  }

  .form-input-label {
    font-size: 20px;
  }

  .form-input-field {
    font-size: 16px;
    height: 40px;
  }

  .form-section-submit-btn {
    font-size: 18px;
    padding: 10px 16px;
  }

  .hello-form-text {
    font-size: 28px;
  }

  #wavy-hand-form-section {
    width: 20px;
    margin: 0 10px;
  }
}

/* Form validation styles for "Need help" section */
.form-input-field.form-error {
  border-bottom-color: #ff4444 !important;
  background-color: rgba(255, 68, 68, 0.1);
}

.form-error-message {
  color: #ff4444;
  font-size: 14px;
  margin-top: 5px;
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced focus state for form inputs */
.form-input-field:focus {
  border-bottom-color: #fff !important;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

/* Responsive adjustments for error messages */
@media (max-width: 768px) {
  .form-error-message {
    font-size: 12px;
    margin-top: 3px;
  }
}

@media (max-width: 480px) {
  .form-error-message {
    font-size: 11px;
  }
}


/*--------------------------------------------------------------------*/
@media(width: 540px){
  .heading-line {
    min-height: 5px ;
    height: 80px;
  }
      .book-now-btn {
        width: 150px;
        height: 50px;
        font-size: 18px;
         margin-top: 15px;
    }
    .hero-heading{
      line-height: 75px;
    }
        .hero-paragraph {
     
        font-size: 18px;
        line-height: 22px;
      margin-top: 15px;}
      .hero-image {
    
        width: 65%;
      
        right: -13rem;
    }
}

@media (max-width: 375px){
  .heading-line {
    min-height: 5px ;
    height: 80px;
  }
      .book-now-btn {
        width: 120px;
        height: 40px;
        font-size: 18px;
         margin-top: 10px;
    }
    .hero-heading{
      line-height: 75px;
    }
        .hero-paragraph {
     
        font-size: 13px;
        line-height: 20px;
      margin-top: 10px;}

          .hero-image {
      
        width: 80%;
        
        right: -5rem;
    }
}

@media (width: 390px){

    .hero-paragraph {
      margin-top: 5px;
    }
       .book-now-btn {
          width: 150px;
        height: 50px;
       }
}


@media (min-width: 768px) and (max-width: 1023px){
  .hero-heading{
    max-width: 100%;
  }
      .hero-paragraph {
        width: 500px;
        font-size: 25px;
        line-height: 35px;}
        .book-now-btn {
          height: 80px;
        }
        /*.vector-lines{
              top: -33vh;
        }**/
.hero-image{
  width: 100%;
}
.vector-lines svg {
  width: 60vh;
}
}

@media (width: 1024px) and (height: 1366px){
 .hero-heading{
    max-width: 100%;
  }
      .hero-paragraph {
        width: 500px;
        font-size: 25px;
        line-height: 35px;}
        .book-now-btn {
          height: 80px;
        }
        /*.vector-lines{
              top: -33vh;
        }**/
.hero-image{
  width: 90%;
    
    top: 500px;
  
 
}
.vector-lines svg {
  width: 60vh;
}

}

@media (width: 1024px) and (height: 600px){

   .hero-heading{
    max-width: 100%;
  }
   .hero-paragraph {
        width: 550px;
        font-size: 21px;
        line-height: 26px;}
}


@media(min-width:912px) and (max-width: 1024px){
  .lozy_storage_card_image {
   
    height: 510px;
}
}

@media(width: 1280px){
  .lozy_storage_card_dark {
    width: 450px;}
.achievement-box {
   
    height: 300px;}

    .lozy_storage_card_heading_image{
      font-size: 27px;
      line-height: 1.2;
    }
    .lozy_storage_card_heading_dark{
      font-size: 27px;
      line-height: 1.2;
    }
    .lozy_storage_card_heading {
      font-size: 30px;
      line-height: 1.1;
    }
}

@media(min-width:390px) and (max-width: 820px){

  .arrow-circle {

    margin-top: 5rem;
}}


@media(width:344px){
      .hero-image {
        width: 100%;
        right: 0;
    }
}

@media (min-width:768px) and (max-width: 1023px){
      .arrow-circle {
       
        margin-left: 4rem;
    }

        .lozy_storage_card_light, .lozy_storage_card_dark, .lozy_storage_card_image {
      
        min-width: 480px;
    }
    .lozy_storage_card_image_overlay{
      justify-content: flex-start;
    }
    .lozy_storage_card_text_image{
      font-size: 22px;
      line-height: 1.3;
      margin-top: 10px;
      max-height:100% ;
    }
}

@media(min-width:1400px){
  .lozy_storage_section_wrapper{
    padding: 80px 0;
  
  }
}

@media (max-width:480px){
  .clients-say-quote-text{
    font-size: 10px;
    line-height: 1.3;
    font-weight: 400;
  }
      .clients-say-description {
        font-size: 14px;
        line-height: 1.3;
        font-weight: 400;
      }
}

@media (width:540px){
  .clients-say-quote-text{
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
  }
   .clients-say-description {
        font-size: 16px;
        line-height: 1.3;
        font-weight: 400;
      }
}



@media (min-width:542px) and (max-width: 912px){
  .clients-say-quote-text{
    font-size: 25px;
    line-height: 1.3;
    font-weight: 300;
  }
   .clients-say-description {
        font-size: 17px;
        line-height: 1.3;
        font-weight: 400;
      }
}

@media (min-width:1024px) and (max-width: 1280px){
  .clients-say-quote-text{
    font-size: 20px;
    line-height: 1.3;
    font-weight: 300;
  }
   .clients-say-description {
        font-size: 15px;
        line-height: 1.3;
        font-weight: 400;
      }
      .scroll-up-button {
        left: 75vw;
        font-size: 18px;
      }
}

@media (width:1024px) and (height:1366px){
  .clients-say-quote-text{
    font-size: 35px;
    line-height: 1.3;
    font-weight: 300;
  }
   .clients-say-description {
        font-size: 19px;
        line-height: 1.3;
        font-weight: 400;
      }
}

@media (min-width:1400px){
  .clients-say-grid {
    aspect-ratio: 1200 / 500;}
    .client-frist-image{
     min-height: 200px;
    max-height: 270px;
    }
}

@media (width:1024px) and (height:600px){
  .clients-say-grid {
    aspect-ratio: 1200 / 500;}
    .client-frist-image{
     min-height: 100px;
    max-height: 170px;
    }
    .clients-say-grid {
          row-gap: 8px;
    column-gap: 8px;
    }
    .clients-say-brand-image {
      border-radius: 10px;
    }
    .clients-say-image img {
 
    border-radius: 10px;
}
.clients-say-info {
  border-radius: 10px;
}
.clients-say-quote{
  border-radius: 10px;
}
}


.baroda-text{
  white-space: wrap;
}

.self-text{
  margin-top: 2rem;
}