/* Ecosystem Page - World Class Infrastructure */

/* Main Infrastructure Section */
.infrastructure {
  padding: 40px 0; /* Reduced from 80px to 40px */
  background: #ffffff; /* White background for entire section */
  min-height: 100vh;
  overflow-x: hidden;
}

.infrastructure__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main Title */
.infrastructure__title {
  width: 100%;
  max-width: 1203px;
  height: auto;
  min-height: 114px;
  font-family: Poppins; /* Restored font-family */
  font-weight: 600;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: 0%;
  text-align: center;
  color: #274472;
  margin: 0 auto 20px; /* Reduced from 40px to 20px */
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 2px 4px rgba(39, 68, 114, 0.1);
  padding: 20px;
}

/* Content Layout */
.infrastructure__content {
  display: flex;
  gap: 60px; /* Reduced from 80px to 60px */
  /* margin-bottom: 40px;  */
  align-items: flex-start;
  background: transparent; /* Remove white background from subsection */
  padding: 40px; /* Reduced from 60px to 40px */
  border-radius: 15px;
  box-shadow: none; /* Remove box shadow */
  backdrop-filter: none; /* Remove backdrop filter */
}

/* Left Side Content */
.infrastructure__left {
  flex: 1;
  max-width: 650px;
  overflow: hidden;
  word-wrap: break-word;
}

.infrastructure__subheading {
  width: 100%;
  max-width: 580px;
  height: auto;
  min-height: 45px;
  font-family: Poppins;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0%;
  text-align: center;
  color: #274472;
  margin: 0 auto 20px; /* Reduced from 40px to 20px */
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #274472, #1a3356);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 10px;
}

.infrastructure__paragraph {
  width: 100%;
  max-width: 650px;
  height: auto;
  min-height: 200px;
  font-family: Poppins;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0%;
  text-align: justify;
  color: #333333;
  margin: 0;
  padding: 20px 0;
  /* border-left: 4px solid #274472; */ /* Removed vertical blue line */
  padding-left: 30px;
  background: transparent; /* Remove background gradient */
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Right Side Image */
.infrastructure__right {
  flex: 1;
  max-width: 682px;
  position: relative;
}

.infrastructure__image {
  width: 100%;
  max-width: 682px;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.infrastructure__image:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Gallery Section - Perfect Alignment for All Sizes */
.infrastructure__gallery {
  margin-top: 80px;
  padding: 40px 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.infrastructure__gallery-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  max-width: 1400px;
}

/* First Row - 3 images centered */
.infrastructure__gallery-row--first {
  justify-content: center;
  margin-bottom: 30px;
}

/* Second Row - 2 images (staggered/honeycomb effect) */
.infrastructure__gallery-row--second {
  justify-content: center;
  /* Offset for honeycomb effect on larger screens */
  margin-left: 0;
}

.infrastructure__gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  border-radius: 0;
  transition: transform 0.3s ease;
  max-width: 380px;
  width: 100%;
  min-width: 280px;
  box-sizing: border-box;
  flex: 0 0 auto;
  background: transparent;
  box-shadow: none;
}

.infrastructure__gallery-item:hover {
  transform: translateY(-5px);
}

.infrastructure__gallery-img {
  width: 100%;
  max-width: 376px;
  height: 251px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease;
  box-sizing: border-box;
  background: transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.infrastructure__gallery-item:hover .infrastructure__gallery-img {
  transform: scale(1.02);
}

.infrastructure__gallery-desc {
  width: 100%;
  max-width: 300px;
  height: auto;
  min-height: 45px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: justify;
  color: #274472;
  margin: 15px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

/* Responsive Design - Improved for better visibility */
@media screen and (max-width: 1400px) and (min-width: 701px) {
  .infrastructure__title {
    font-size: 50px;
    max-width: 900px;
    
  }
  
  .infrastructure__content {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 10px;
    padding: 40px;
    background: transparent; /* Remove white background */
    border-radius: 0; /* Remove border radius */
    box-shadow: none; /* Remove box shadow */
    backdrop-filter: none; /* Remove backdrop filter */
  }
  
  .infrastructure__left {
    max-width: 100%;
  }
  
  .infrastructure__subheading {
    font-size: 28px;
    max-width: 100%;
  }
  
  .infrastructure__paragraph {
    font-size: 18px;
    max-width: 100%;
    padding-left: 20px;
    background: transparent; /* Remove background gradient */
  }
  
  .infrastructure__right {
    max-width: 100%;
    text-align: center;
  }
  
  .infrastructure__image {
    max-width: 100%;
    min-height: 350px;
    margin-bottom: 50px;
  }
  
  /* Fix gallery overflow issues while maintaining background */
  .infrastructure__gallery {
    background: transparent; /* Remove white background */
    border-radius: 0; /* Remove border radius */
    box-shadow: none; /* Remove box shadow */
    /* padding: 40px 0; */
  }
  
  .infrastructure__gallery-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .infrastructure__gallery-row--first {
    justify-content: center;
  }
  
  .infrastructure__gallery-row--second {
    /* margin-left: calc(30% + 15px) !important;  */
    /* margin-left: ; */
    justify-content: flex-start !important;
  }
  
  .infrastructure__gallery-item {
   
    /* box-shadow: 0 8px 25px ; */
    padding: 15px;
    max-width: 350px; /* Increased width */
  }
  
  .infrastructure__gallery-img {
    width: 100%;
    max-width: 330px; /* Increased width */
    height: auto;
    min-height: 220px; /* Increased height */
  }
  
  .infrastructure__gallery-desc {
    font-size: 22px;
    max-width: 100%;
  }
}

/* Medium Screens 900px-1199px - Responsive Honeycomb */
@media screen and (max-width: 1199px) and (min-width: 900px) {
  .infrastructure__gallery-row {
    gap: 35px;
    max-width: 1100px;
  }
  
  .infrastructure__gallery-row--first {
    justify-content: center;
    gap: 35px;
  }
  
  .infrastructure__gallery-row--second {
    /* Honeycomb offset for medium screens */
    margin-left: calc((340px + 35px) / 2);
    justify-content: flex-start;
    gap: 35px;
  }
  
  .infrastructure__gallery-item {
    max-width: 340px;
    background: transparent;
  }
  
  .infrastructure__gallery-img {
    max-width: 340px;
    height: 225px;
    background: transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .infrastructure__gallery-desc {
    font-size: 26px;
    max-width: 270px;
  }
}

/* Tablet Screens 700px-899px - Centered Grid */
@media screen and (max-width: 899px) and (min-width: 700px) {
  .infrastructure__gallery-row {
    gap: 30px;
    justify-content: center;
  }
  
  .infrastructure__gallery-row--first {
    justify-content: center;
  }
  
  .infrastructure__gallery-row--second {
    margin-left: 0;
    justify-content: center;
  }
  
  .infrastructure__gallery-item {
    max-width: 320px;
    background: transparent;
  }
  
  .infrastructure__gallery-img {
    max-width: 320px;
    height: 210px;
    background: transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .infrastructure__gallery-desc {
    font-size: 24px;
    max-width: 260px;
  }
}

/* Desktop and Ultra-Large Screens - Perfect Honeycomb */
@media screen and (min-width: 1401px) {
  .infrastructure__gallery-row {
    gap: 50px;
    max-width: 1600px;
  }
  
  .infrastructure__gallery-row--first {
    justify-content: center;
    gap: 50px;
  }
  
  .infrastructure__gallery-row--second {
    /* Perfect honeycomb offset - second row positioned in gaps of first */
    margin-left: calc((376px + 50px) / 2); /* Half item width plus half gap for perfect stagger */
    justify-content: flex-start;
    gap: 50px;
  }
  
  .infrastructure__gallery-item {
    max-width: 380px;
    background: transparent;
  }
  
  .infrastructure__gallery-img {
    max-width: 376px;
    height: 251px;
    background: transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .infrastructure__gallery-desc {
    font-size: 30px;
    max-width: 300px;
  }
}

/* Large Desktop 1200px-1400px - Perfect Honeycomb */
@media screen and (max-width: 1400px) and (min-width: 1200px) {
  .infrastructure__gallery-row {
    gap: 45px;
    max-width: 1300px;
  }
  
  .infrastructure__gallery-row--first {
    justify-content: center;
    gap: 45px;
  }
  
  .infrastructure__gallery-row--second {
    /* Perfect honeycomb offset */
    margin-left: calc((360px + 45px) / 2);
    justify-content: flex-start;
    gap: 45px;
  }
  
  .infrastructure__gallery-item {
    max-width: 360px;
    background: transparent;
  }
  
  .infrastructure__gallery-img {
    max-width: 360px;
    height: 240px;
    background: transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .infrastructure__gallery-desc {
    font-size: 28px;
    max-width: 300px;
  }
}

@media screen and (max-width: 900px) {
  .infrastructure {
    padding: 30px 0;
  }
  
  .infrastructure__container {
    padding: 0 20px; /* Better padding for mobile */
  }
  
  .infrastructure__title {
    font-size: clamp(32px, 6vw, 40px); /* Responsive font size */
    margin-bottom: 20px;
    padding: 15px;
    line-height: 1.2;
  }
  
  .infrastructure__content {
    padding: 25px; /* Increased padding */
    flex-direction: column;
    gap: 30px; /* Better spacing between left and right content */
  }
  
  .infrastructure__left {
    max-width: 100%;
    text-align: center; /* Center align for better mobile appearance */
  }
  
  .infrastructure__subheading {
    font-size: clamp(22px, 5vw, 28px); /* Responsive font size */
    margin-bottom: 20px;
    padding: 10px;
  }
  
  .infrastructure__paragraph {
    font-size: clamp(16px, 3.5vw, 18px); /* Responsive font size */
    line-height: 1.7; /* Better readability */
    padding: 20px;
    text-align: justify;
    /* background: rgba(39, 68, 114, 0.05);  */
    border-radius: 10px;
    /* border-left: 4px solid #274472;  */
  }
  
  .infrastructure__image {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
  }
  
  /* Mobile Gallery - Vertical Stack */
  .infrastructure__gallery-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
  }
  
  .infrastructure__gallery-row--first,
  .infrastructure__gallery-row--second {
    margin-left: 0;
    justify-content: center;
    max-width: 100%;
    transform: none;
  }
  
  .infrastructure__gallery-item {
    width: 100%;
    max-width: 380px;
    padding: 10px;
    text-align: center;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  
  .infrastructure__gallery-img {
    width: 100%;
    max-width: 376px;
    height: 240px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: transparent;
  }
  
  .infrastructure__gallery-desc {
    font-size: clamp(20px, 4vw, 24px);
    margin-top: 12px;
    color: #274472;
    font-weight: 600;
    max-width: 260px;
  }
}

@media screen and (max-width: 600px) {
  .infrastructure {
    padding: 25px 0;
  }
  
  .infrastructure__container {
    padding: 0 15px;
  }
  
  .infrastructure__title {
    font-size: clamp(24px, 7vw, 32px); /* Smaller but still visible */
    margin-bottom: 15px;
    padding: 10px;
    line-height: 1.3;
  }
  
  .infrastructure__content {
    padding: 20px;
    gap: 25px;
  }
  
  .infrastructure__subheading {
    font-size: clamp(18px, 6vw, 24px); /* Responsive sizing */
    margin-bottom: 15px;
    padding: 8px;
    line-height: 1.3;
  }
  
  .infrastructure__paragraph {
    font-size: clamp(14px, 4vw, 16px); /* Enhanced readability */
    line-height: 1.8; /* Better line spacing */
    padding: 15px;
    border-radius: 8px;
    /* background: rgba(39, 68, 114, 0.08);  */
    /* border-left: 3px solid #274472; */
  }
  
  .infrastructure__image {
    min-height: 200px; /* Reduced but maintained aspect ratio */
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  }
  
  /* Small Mobile Gallery */
  .infrastructure__gallery-row {
    gap: 25px;
    flex-direction: column;
    align-items: center;
  }
  
  .infrastructure__gallery-row--first,
  .infrastructure__gallery-row--second {
    margin-left: 0;
    justify-content: center;
  }
  
  .infrastructure__gallery-item {
    width: 100%;
    max-width: 350px;
    padding: 10px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  
  .infrastructure__gallery-img {
    width: 100%;
    max-width: 320px;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: transparent;
  }
  
  .infrastructure__gallery-desc {
    font-size: clamp(16px, 5vw, 20px);
    margin-top: 10px;
    font-weight: 600;
    color: #274472;
    max-width: 260px;
  }
}

/* Research Laboratories Section */
@media screen and (max-width: 400px) {
  .infrastructure {
    padding: 20px 0;
  }
  
  .infrastructure__container {
    padding: 0 12px;
  }
  
  .infrastructure__title {
    font-size: clamp(20px, 8vw, 28px);
    margin-bottom: 15px;
    padding: 8px;
    line-height: 1.4;
  }
  
  .infrastructure__content {
    padding: 15px;
    gap: 20px;
  }
  
  .infrastructure__subheading {
    font-size: clamp(16px, 7vw, 22px);
    margin-bottom: 12px;
    padding: 6px;
  }
  
  .infrastructure__paragraph {
    font-size: clamp(12px, 4.5vw, 15px);
    line-height: 1.9;
    padding: 12px;
    border-radius: 6px;
    /* border-left: 2px solid #274472; */
  }
  
  .infrastructure__image {
    min-height: 180px;
    border-radius: 10px;
  }
  
  /* Ultra Small Mobile Gallery */
  .infrastructure__gallery-row {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
  
  .infrastructure__gallery-row--first,
  .infrastructure__gallery-row--second {
    margin-left: 0;
    justify-content: center;
  }
  
  .infrastructure__gallery-item {
    max-width: 300px;
    padding: 8px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  
  .infrastructure__gallery-img {
    max-width: 280px;
    height: 180px;
    border-radius: 6px;
    background: transparent;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .infrastructure__gallery-desc {
    font-size: clamp(14px, 5.5vw, 18px);
    margin-top: 8px;
    max-width: 220px;
  }
}

/* Enhanced visibility for bigger screens */
@media screen and (min-width: 1700px) {
  .infrastructure__container {
    max-width: 1600px;
  }
  
  .infrastructure__title {
    font-size: 75px;
    margin-bottom: 10px;
  }
  
  .infrastructure__content {
    gap: 100px;
    padding: 80px;
    /* margin-bottom: 150px; */
  }
  
  .infrastructure__subheading {
    font-size: 38px;
    margin-bottom: 50px;
  }
  
  .infrastructure__paragraph {
    font-size: 24px;
    line-height: 1.7;
    padding-left: 40px;
    border-left-width: 5px;
  }
  
  .infrastructure__image {
    min-height: 500px;
  }
  
  
  
  .infrastructure__gallery-row {
    gap: 60px;
  }
  
  .infrastructure__gallery-img {
    width: 450px; /* Increased width for larger screens */
    height: 300px; /* Increased height proportionally */
  }
  
  .infrastructure__gallery-desc {
    font-size: 32px;
    margin-top: 30px;
    max-width: 320px;
  }
  
  .infrastructure__gallery-row--second {
    margin-left: 350px; /* Adjusted for increased image size */
  }
}

@media screen and (min-width: 2000px) {
  .infrastructure__container {
    max-width: 1800px;
  }
  
  .infrastructure__title {
    font-size: 85px;
    margin-bottom: 10px;
  }
  
  .infrastructure__content {
    gap: 120px;
    padding: 140px;
  }
  
  .infrastructure__subheading {
    font-size: 42px;
  }
  
  .infrastructure__paragraph {
    font-size: 26px;
    padding-left: 50px;
  }
  
  .infrastructure__image {
    min-height: 550px;
  }
  
  .infrastructure__gallery-img {
    width: 500px; /* Increased width for very large screens */
    height: 335px; /* Increased height proportionally */
  }
  
  .infrastructure__gallery-desc {
    font-size: 36px;
    max-width: 330px;
  }
  
  .infrastructure__gallery-row--second {
    margin-left: 450px; /* Adjusted for increased image size */
  }
}

@media screen and (min-width: 2400px) {
  .infrastructure__container {
    max-width: 2000px;
  }
  
  .infrastructure__title {
    font-size: 95px;
    margin-bottom: 10px;
  }
  
  .infrastructure__content {
    gap: 465px;
    padding: 60px 80px;
    align-items: center;
  }
  
  .infrastructure__subheading {
    font-size: 48px;
  }
  
  .infrastructure__paragraph {
    font-size: 28px;
    padding-left: 60px;
  }
  
  .infrastructure__image {
    min-height: 600px;
  }
  
  .infrastructure__gallery-img {
    width: 550px; /* Increased width for ultra-large screens */
    height: 370px; /* Increased height proportionally */
  }
  
  .infrastructure__gallery-desc {
    font-size: 40px;
    min-width: 500px;
  }
  
  .infrastructure__gallery-row--second {
    margin-left: 470; /* Adjusted for increased image size */
  }
}

/* Extra Ultra Large screens 2800px+ */
@media screen and (min-width: 2800px) {
  .infrastructure {
    padding: 80px 0;
  }
  
  .infrastructure__container {
    max-width: 2500px;
  }
  
  .infrastructure__title {
    font-size: 115px;
    margin-bottom: 20px;
  }
  
  .infrastructure__content {
    gap: 100px;
    padding: 80px 100px;
    align-items: center;
  }
  
  .infrastructure__subheading {
    font-size: 60px;
  }
  
  .infrastructure__paragraph {
    font-size: 36px;
    padding-left: 80px;
    line-height: 1.7;
  }
  
  .infrastructure__image {
    min-height: 750px;
    border-radius: 20px;
  }
  
  .infrastructure__gallery-img {
    width: 700px;
    height: 470px;
    border-radius: 16px;
  }
  
  .infrastructure__gallery-desc {
    font-size: 50px;
    max-width: 450px;
  }
  
  .infrastructure__gallery-row--second {
    margin-left: 600px;
  }
}

/* Explore Research Laboratories Section */
.research-laboratories {
  padding: 30px 0; /* Reduced from 80px to 30px */
  background: transparent !important; /* Force transparent background */
  margin-top: 20px; /* Reduced from 60px to 20px */
}

.research-laboratories__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  background: transparent !important; /* Force transparent background */
}

/* Main Title */
.research-laboratories__title {
  width: 100%;
  max-width: 1460px;
  height: auto;
  min-height: 83px;
  font-family: Poppins;
  font-weight: 600;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #274472;
  margin: 0 auto 20px; /* Reduced from 40px to 20px */
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 2px 4px rgba(39, 68, 114, 0.1);
  /* padding: 20px; */
}

/* Description */
.research-laboratories__description {
  width: 100%;
  max-width: 1430px;
  height: auto;
  min-height: 38px;
  font-family: Poppins;
  font-weight: 400;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #333333;
  margin: 0 auto 30px; /* Reduced from 80px to 30px */
  /* padding: 10px; */
}

/* Content Layout */
.research-laboratories__content {
  display: flex;
  gap: 40px; /* Reduced from 60px to 40px */
  align-items: flex-start;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  background: transparent; /* Remove background */
  padding: 0; /* Remove padding */
  border-radius: 0; /* Remove border radius */
  box-shadow: none; /* Remove box shadow */
  backdrop-filter: none; /* Remove backdrop filter */
}

/* Left Side - Boxes */
.research-laboratories__left {
  flex: 0 0 auto;
  width: 800px;
}

.research-laboratories__heading {
  width: 100%;
  max-width: 650px;
  height: auto;
  min-height: 67px;
  font-family: Poppins;
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #274472;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  /* Remove gradient text and thick line effects */
}

/* Box Rows */
.research-laboratories__row {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-bottom: 25px;
}

.research-laboratories__row--first {
  margin-bottom: 30px;
}

.research-laboratories__row--second {
  margin-bottom: 0;
}

/* Individual Boxes */
.research-laboratories__box {
  width: 370px; /* Further increased width */
  height: 320px; /* Further increased height */
  /* background: transparent !important;  */
  border: none; /* Remove border completely */
  border-radius: 8px;
  /* padding: 10px 15px;  */
  
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: none !important; /* Remove box shadow completely */
  background-color: #2744725C;
}

.research-laboratories__box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Box Icons */
.research-laboratories__icon {
  width: 70px;
  height: 70px;
  margin: 15px 0 0px 0; /* Moved image further up with negative margin */
  transition: transform 0.3s ease;
  filter: brightness(0) saturate(100%) invert(21%) sepia(25%) saturate(1668%) hue-rotate(193deg) brightness(92%) contrast(87%);
}

.research-laboratories__box:hover .research-laboratories__icon {
  transform: scale(1.05);
}

/* Box Titles */
.research-laboratories__box-title {
  width: 100%;
  max-width: 290px; /* Further increased max-width */
  height: auto;
  min-height: 35px; /* Further reduced min-height */
  font-family: Poppins;
  font-weight: 600;
  font-size: 25px; /* Slightly reduced font size */
  line-height: 1.1; /* Tighter line height */
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
  /* margin: 5px 0 5px 0; */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Box Descriptions */
.research-laboratories__box-desc {
  width: 100%;
  max-width: 320px; /* Further increased max-width */
  height: auto;
  min-height: 80px; /* Much increased min-height to contain text */
  font-family: Poppins;
  font-weight: 400;
  font-size: 20px; /* Appropriate font size */
  line-height: 1.3; /* Better line spacing */
  letter-spacing: 0%;
  text-align: center;
  color: #333333;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 0 10px; /* Side padding for better readability */
  flex: 1; /* Take remaining space */
  overflow: hidden; /* Prevent text overflow */
  hyphens: auto;
}

/* Right Side Content */
.research-laboratories__right {
  flex: 0 0 auto;
  width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 150px; /* Position paragraph to start in gap between first and second row - adjusted for new box height */
}

/* Right Side Paragraph */
.research-laboratories__paragraph {
  width: 100%;
  max-width: 640px;
  height: auto;
  min-height: 280px; /* Adjust to match better with the box layout */
  font-family: Poppins;
  font-weight: 500;
  font-size: 30px; /* Slightly smaller for better proportion */
  line-height: 1.2;
  /* letter-spacing: 0%; */
  padding-top:205px;

  text-align: center;
  color: #333333;
  margin: 0 0 40px 0;
  /* padding: 20px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Button */
.research-laboratories__button {
  display: inline-block;
  width: 481px;
  height: 51px;
  font-family: Poppins;
  font-weight: 600;
  font-size: 23px;
  line-height: 51px;
  letter-spacing: 0%;
  text-align: center;
  color: #274472;
  background: white;
  border: 3px solid #274472;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(39, 68, 114, 0.3);
  text-decoration: none;
}

.research-laboratories__button:hover {
  background: #274472;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 68, 114, 0.4);
}

/* Responsive Design for Research Laboratories */
@media screen and (max-width: 1400px) {
  .research-laboratories__title {
    font-size: 50px;
    max-width: 800px;
  }
  
  .research-laboratories__description {
    font-size: 22px;
    max-width: 1200px;
  }
  
  .research-laboratories__content {
    gap: 40px;
    padding: 0 20px;
  }
  
  .research-laboratories__left {
    width: 600px;
  }
  
  .research-laboratories__heading {
    font-size: 30px;
  }
  
  .research-laboratories__box {
    width: 330px; /* Increased width */
    height: 300px; /* Increased height */
    padding: 10px 15px; /* Reduced top/bottom padding */
   
    box-shadow: none !important; /* Remove shadows */
   
  }
  
  .research-laboratories__icon {
    width: 65px;
    height: 65px;
    margin: 10px 0 0px 0; /* Maintain shifted up position */
  }
  
  .research-laboratories__box-title {
    font-size: 25px;
    min-height: 30px; /* Reduced min-height */
    max-width: 310px; /* Increased max-width */
    margin: 5px 0 5px 0; 
    line-height: 1.1; /* Tighter line height */
  }
  
  .research-laboratories__box-desc {
    font-size: 20px; /* Adjusted font size */
    max-width: 310px; /* Increased max-width */
    min-height: 75px; /* Increased min-height for text containment */
    line-height: 1.3; /* Better line spacing */
    flex: 1; /* Take remaining space */
    overflow: hidden; /* Prevent overflow */
  }
  
  .research-laboratories__right {
    width: 580px;
    padding-top: 135px; /* Adjusted for gap positioning with new box height */
  }
  
  .research-laboratories__paragraph {
    font-size: 26px;
    min-height: 260px;
  }
  
  .research-laboratories__button {
    width: 100%;
    max-width: 450px;
    font-size: 20px;
  }
}

@media screen and (max-width: 1200px) {
  .research-laboratories__content {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    padding: 0 20px;
  }
  
  .research-laboratories__left {
    width: 100%;
    max-width: 700px;
  }
  
  .research-laboratories__right {
    width: 100%;
    max-width: 600px;
    padding-top: 0;
  }
  
  .research-laboratories__paragraph {
    padding-top: 20px;
    text-align: center;
    min-height: auto;
  }
}

@media screen and (max-width: 900px) {
  .research-laboratories {
    padding: 60px 0;
  }
  
  .research-laboratories__title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .research-laboratories__description {
    font-size: 18px;
    margin-bottom: 50px;
  }
  
  .research-laboratories__content {
    padding: 0; /* Remove padding */
    gap: 40px;
  }
  
  .research-laboratories__heading {
    font-size: 22px;
    margin-bottom: 30px;
  }
  
  .research-laboratories__row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .research-laboratories__box {
    width: 100%;
    max-width: 380px; /* Increased max-width */
    height: auto;
    min-height: 260px; /* Increased min-height */
    padding: 10px 15px; /* Reduced top/bottom padding */
    background-color: #2744725C; /* Force transparent */
    box-shadow: none !important; /* Remove shadows */
    border: none; /* Remove border */
  }
  
  .research-laboratories__icon {
    width: 75px;
    height: 75px;
    margin: 0px 0 5px 0; /* Shifted up */
  }
  
  .research-laboratories__box-title {
    font-size: 25px;
    min-height: 45px; /* Reduced min-height */
    max-width: 340px; /* Increased max-width */
    margin: 5px 0 8px 0; /* Minimal margins */
    line-height: 1.1; /* Tighter line height */
  }
  
  .research-laboratories__box-desc {
    font-size: 20px; /* Font size */
    min-height: 70px; /* Increased min-height for text containment */
    max-width: 340px; /* Increased max-width */
    line-height: 1.3; /* Better line spacing */
    flex: 1; /* Take remaining space */
    overflow: hidden; /* Prevent overflow */
  }
  
  .research-laboratories__paragraph {
    font-size: 22px;
    line-height: 1.4;
    padding: 15px 0; /* Remove left padding */
  }
  
  .research-laboratories__button {
    max-width: 400px;
    font-size: 18px;
    height: 45px;
  }
}

@media screen and (max-width: 600px) {
  .research-laboratories {
    padding: 40px 0;
  }
  
  .research-laboratories__container {
    padding: 0 15px;
  }
  
  .research-laboratories__title {
    font-size: 28px;
    margin-bottom: 20px;
    padding: 15px;
  }
  
  .research-laboratories__description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .research-laboratories__content {
    padding: 0; /* Remove padding */
    gap: 30px;
  }
  
  .research-laboratories__heading {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .research-laboratories__box {
    max-width: 320px; /* Increased max-width */
    min-height: 220px; /* Increased min-height */
    padding: 10px 12px; /* Reduced top/bottom padding */
  }
  
  .research-laboratories__icon {
    width: 70px;
    height: 70px;
    margin: 5px 0 5px 0; /* Shifted up */
  }
  
  .research-laboratories__box-title {
    font-size: 21px;
    min-height: 45px; /* Reduced min-height */
    max-width: 280px; /* Increased max-width */
    margin: 0px 0 5px 0; /* Reduced margins */
  }
  
  .research-laboratories__box-desc {
    font-size: 17px; /* Increased font size */
    min-height: 45px; /* Increased min-height */
    max-width: 280px; /* Increased max-width */
    line-height: 1.4; /* Improved line height */
    flex: 1; /* Allow description to take remaining space */
  }
  
  .research-laboratories__paragraph {
    font-size: 19px;
    line-height: 1.5;
    padding: 12px 0; /* Remove left padding */
  }
  
  .research-laboratories__button {
    max-width: 320px;
    font-size: 16px;
    height: 40px;
  }
}

/* Enhanced visibility for bigger screens */
@media screen and (min-width: 1700px) {
  .research-laboratories__container {
    max-width: 1600px;
  }
  
  .research-laboratories__title {
    font-size: 75px;
    margin-bottom: 60px;
  }
  
  .research-laboratories__description {
    font-size: 30px;
    margin-bottom: 100px;
  }
  
  .research-laboratories__content {
    gap: 100px;
    padding: 0; /* Remove padding */
  }
  
  .research-laboratories__heading {
    font-size: 36px;
    margin-bottom: 50px;
  }
  
  .research-laboratories__row {
    gap: 40px;
  }
  
  .research-laboratories__box {
    width: 370px; /* Increased width */
    height: 320px; /* Increased height */
    /* padding: 18px 25px;  */
  }
  
  .research-laboratories__icon {
    width: 110px;
    height: 110px;
    margin: 10px 0 8px 0; 
  }
  
  .research-laboratories__box-title {
    font-size: 24px;
    min-height: 45px; /* Reduced min-height */
    max-width: 290px;
    
  }
  
  .research-laboratories__box-desc {
    font-size: 18px; /* Increased font size */
    min-height: 70px; /* Increased min-height */
    max-width: 320px; /* Increased max-width */
    line-height: 1.4; /* Improved line height */
    flex: 1; /* Allow description to take remaining space */
  }
  
  .research-laboratories__paragraph {
    font-size: 28px;
    line-height: 1.3;
    padding-top: 240px; /* Remove left padding */
    padding-bottom: 0px;
    margin-bottom: 20px;
  }
  
  .research-laboratories__button {
    width: 550px;
    height: 60px;
    font-size: 26px;
  }
}

@media screen and (min-width: 2000px) {
  .research-laboratories__container {
    max-width: 1800px;
  }
  
  .research-laboratories__title {
    font-size: 85px;
    margin-bottom: 80px;
  }
  
  .research-laboratories__description {
    font-size: 35px;
    margin-bottom: 120px;
  }
  
  .research-laboratories__content {
    gap: 120px;
    padding: 0; /* Remove padding */
  }
  
  .research-laboratories__heading {
    font-size: 40px;
  }
  
  .research-laboratories__box {
    width: 400px;
    height: 350px;
    padding: 10px;
  }
  
  .research-laboratories__icon {
    width: 130px;
    height: 130px;
    margin: 20px 0;
  }
  
  .research-laboratories__box-title {
    font-size: 28px;
    min-height: 50px;
  }
  
  .research-laboratories__box-desc {
    font-size: 19px; /* Adjusted font size */
    min-height: 80px;
    max-width: 350px; /* Increased max-width */
  }
  
  .research-laboratories__paragraph {
    font-size: 32px;
    padding-top: 250px; /* Remove left padding */
    padding-bottom: 0px;
    margin-bottom: 20px;
  }
  
  .research-laboratories__button {
    width: 600px;
    height: 70px;
    
    font-size: 30px;
  }
}

@media screen and (min-width: 2400px) {
  .research-laboratories__container {
    max-width: 2000px;
  }
  
  .research-laboratories__title {
    font-size: 95px;
    margin-bottom: 100px;
  }
  
  .research-laboratories__description {
    font-size: 40px;
    margin-bottom: 140px;
  }
  
  .research-laboratories__content {
    gap: 140px;
    padding: 0; /* Remove padding */
  }
  
  .research-laboratories__heading {
    font-size: 45px;
  }
  
  .research-laboratories__box {
    width: 480px;
    height: 500px;
    padding: 20px;
  }
  
  .research-laboratories__icon {
    width: 160px;
    height: 160px;
    margin: 30px 0;
  }
  
  .research-laboratories__box-title {
    font-size: 34px;
    min-height: 65px;
  }
  
  .research-laboratories__box-desc {
    font-size: 24px;
    min-height: 110px;
    max-width: 440px;
    line-height: 1.5;
    overflow: hidden;
    word-wrap: break-word;
  }
  
  .research-laboratories__paragraph {
    font-size: 36px;
    padding-top: 270px;
    padding-bottom: 0px;
    margin-bottom: 25px;
  }
  
  .research-laboratories__button {
    width: 700px;
    height: 80px;
    font-size: 34px;
  }
}

/* Extra Ultra Large screens 2800px+ for research laboratories */
@media screen and (min-width: 2800px) {
  .research-laboratories__container {
    max-width: 2700px;
  }
  
  .research-laboratories__title {
    font-size: 115px;
    margin-bottom: 120px;
  }
  
  .research-laboratories__description {
    font-size: 48px;
    margin-bottom: 160px;
  }
  
  .research-laboratories__content {
    gap: 500px;
  }
  
  .research-laboratories__heading {
    font-size: 55px;
  }
  
  .research-laboratories__box {
    width: 780px;
    height: 680px;
    padding: 5px;
  }

  .research-laboratories__left{
    width: 900px;
  }
  
  .research-laboratories__icon {
    width: 200px;
    height: 200px;
    margin: 35px 0;
  }
  
  .research-laboratories__box-title {
    font-size: 42px;
    min-height: 80px;
  }
  
  .research-laboratories__box-desc {
    font-size: 30px;
    min-height: 140px;
    max-width: 340px;
    line-height: 1.6;
    overflow: hidden;
    word-wrap: break-word;
  }
  
  .research-laboratories__paragraph {
    font-size: 44px;
    padding-top: 320px;
    margin-bottom: 30px;
  }
  
  .research-laboratories__button {
    width: 780px;
    height: 95px;
    font-size: 40px;
    line-height: 95px;
  }
}

/* CRITICAL FIX: Force staggered effect for problematic 1200px-1400px range */
@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .infrastructure .infrastructure__gallery .infrastructure__gallery-row.infrastructure__gallery-row--second {
    margin-left: calc(33.33% + 20px) !important; /* Restored staggered positioning */
    justify-content: flex-start !important;
  }
}

/* Additional backup with even higher specificity */
/* .infrastructure__container .infrastructure__gallery .infrastructure__gallery-row--second {
  /* margin-left: calc(33.33% + 20px); */


@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .infrastructure__container .infrastructure__gallery .infrastructure__gallery-row--second {
    margin-left: calc(33.33% + 20px) !important; /* Restored staggered positioning */
    justify-content: flex-start !important;
  }
}

/* Virtual Facility Tour Section */
.virtual-facility-tour {
  padding: 30px 0; /* Keep current padding */
  background: transparent;
  margin-top: 80px; /* Increased from 40px to 80px for more significant gap above */
}

.virtual-facility-tour__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main Title */
.virtual-facility-tour__title {
  width: 100%;
  max-width: 956px;
  height: auto;
  min-height: 83px;
  font-family: Poppins;
  font-weight: 600;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #274472;
  margin: 0 auto 15px; /* Reduced margin from 25px to 15px */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Subheading */
.virtual-facility-tour__subheading {
  width: 100%;
  max-width: 1430px;
  height: auto;
  min-height: 38px;
  font-family: Poppins;
  font-weight: 400;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #333333;
  margin: 0 auto 30px; /* Reduced from 60px to 30px */
  padding: 10px;
}

/* Content Layout */
.virtual-facility-tour__content {
  display: flex;
  gap: 40px; /* Reduced from 60px to 40px */
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 40px; /* Reduced from 80px to 40px */
}

/* Left Side - Image */
.virtual-facility-tour__left {
  flex: 0 0 auto;
  width: 705px;
}

.virtual-facility-tour__video {
 
  max-width: 705px;
  /* height: 378px; */
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  /* background-color: #000;  */
}

.virtual-facility-tour__video:hover {
  transform: scale(1.02);
}

/* Right Side - Content */
.virtual-facility-tour__right {
  flex: 0 0 auto;
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 40px;
}

/* Infrastructure Brochure Heading */
.virtual-facility-tour__brochure-heading {
  width: 100%;
  max-width: 420px;
  height: auto;
  min-height: 48px;
  font-family: Poppins;
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left; /* Changed from center to left for proper alignment */
  color: #274472;
  margin: 0 0 25px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Changed from center to flex-start */
  padding-left: 20px; /* Add left padding for alignment */
}

/* Brochure Description */
.virtual-facility-tour__brochure-description {
  width: 100%;
  max-width: 600px;
  height: auto;
  min-height: 90px;
  font-family: Poppins;
  font-weight: 400;
  font-size: 27px;
  /* line-height: 100%; */
  letter-spacing: 0%;
  /* text-align: justify; */
  color: #333333;
  margin: 0 0 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

/* PDF Info */
.virtual-facility-tour__pdf-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-left: 20px;
}

.virtual-facility-tour__pdf-label {
  width: 80px;
  height: 33px;
  background: rgba(39, 68, 114, 0.36); /* Updated background color */
  color: #274472; /* Changed text color to dark blue for better contrast */
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Poppins;
  font-weight: 600;
  font-size: 14px;
}

.virtual-facility-tour__pdf-size {
  width: 80px;
  height: 33px;
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  color: #274472;
  background: rgba(39, 68, 114, 0.36);
  /* padding: 8px 12px;  */
  border-radius: 15px;
  white-space: nowrap; /* Prevent text wrapping */
  /* min-width: 60px;  */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Download Button */
.virtual-facility-tour__download-button {
  width: 351px;
  height: 51px;
  font-family: Poppins;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #274472;
  background: transparent;
  border: 3px solid #274472;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-left: 20px;
}

.virtual-facility-tour__download-button:hover {
  background: #274472;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 68, 114, 0.4);
  justify-content: center;
}

.virtual-facility-tour__download-button:hover .virtual-facility-tour__download-icon {
  display: none;
}

.virtual-facility-tour__download-icon {
  width: 61px;
  height: 34px;
  margin-right: 16px;
  margin-top: 9px;
  object-fit: contain;
}

/* Additional Section */
.virtual-facility-tour__additional {
  text-align: center;
  margin-top: 30px; /* Reduced from 60px to 30px */
}

.virtual-facility-tour__additional-description {
  width: 100%;
  max-width: 788px;
  height: auto;
  min-height: 76px;
  font-family: Poppins;
  font-weight: 400;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
  margin: 0 auto 15px; /* Reduced margin from 30px to 15px */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Contact Button */
.virtual-facility-tour__contact-button {
  width: 282px;
  height: 51px;
  font-family: Poppins;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #274472;
  background: transparent;
  border: 3px solid #274472;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto;
  display: block;
  text-decoration: none; /* Remove underline for anchor */
  display: flex; /* Use flex for better centering */
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.virtual-facility-tour__contact-button:hover {
  background: #274472;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 68, 114, 0.4);
}

/* Responsive Design for Virtual Facility Tour */
@media screen and (max-width: 1400px) {
  .virtual-facility-tour__title {
    font-size: 50px;
    max-width: 800px;
  }
  
  .virtual-facility-tour__subheading {
    font-size: 22px;
    max-width: 1200px;
  }
  
  .virtual-facility-tour__content {
    gap: 40px;
    padding: 0 20px;
  }
  
  .virtual-facility-tour__left {
    width: 600px;
  }
  
  .virtual-facility-tour__image {
    max-width: 600px;
    height: 320px;
  }
  
  .virtual-facility-tour__right {
    width: 450px;
  }
  
  .virtual-facility-tour__brochure-heading {
    font-size: 26px;
    text-align: left; /* Maintain left alignment */
    justify-content: flex-start; /* Maintain left alignment */
    padding-left: 20px; /* Maintain left padding */
  }
  
  .virtual-facility-tour__brochure-description {
    font-size: 25px;
    max-width: 400px;
  }
  
  .virtual-facility-tour__download-button {
    width: 320px;
    font-size: 18px;
  }
  
  .virtual-facility-tour__pdf-size {
    font-size: 12px;
    padding: 6px 10px; /* Smaller padding to prevent overflow */
    min-width: 50px;
  }
  
  .virtual-facility-tour__additional-description {
    font-size: 22px;
    max-width: 700px;
    margin-bottom: 15px; /* Reduced margin */
  }
  
  .virtual-facility-tour__contact-button {
    width: 260px;
    font-size: 18px;
  }
}

@media screen and (max-width: 1200px) {
  .virtual-facility-tour__content {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    padding: 0 20px;
  }
  
  .virtual-facility-tour__left {
    width: 100%;
    max-width: 700px;
  }
  
  .virtual-facility-tour__image {
    width: 100%;
    height: auto;
    min-height: 300px;
  }
  
  .virtual-facility-tour__right {
    width: 100%;
    max-width: 600px;
    align-items: center;
    padding-top: 0;
  }
  
  .virtual-facility-tour__brochure-heading {
    text-align: center; /* Center align for smaller screens */
    justify-content: center; /* Center align for smaller screens */
    padding-left: 0; /* Remove left padding for smaller screens */
  }
  
  .virtual-facility-tour__brochure-description {
    font-size: 23;
    text-align: center;
    padding: 0;
  }
  
  .virtual-facility-tour__pdf-info {
    justify-content: center;
    padding-left: 0;
  }
  
  .virtual-facility-tour__download-button {
    margin-left: 0;
  }
}

@media screen and (max-width: 900px) {
  .virtual-facility-tour {
    padding: 60px 0;
  }
  
  .virtual-facility-tour__title {
    font-size: 36px;
    margin-bottom: 20px; /* Reduced gap between title and subtitle */
  }
  
  .virtual-facility-tour__subheading {
    font-size: 18px;
    margin-bottom: 40px;
    padding: 0 15px; /* Add side padding for better readability */
  }
  
  .virtual-facility-tour__content {
    gap: 30px;
    padding: 0 15px; /* Add side padding */
  }
  
  .virtual-facility-tour__image {
    min-height: 250px; /* Reduce height for mobile */
    border-radius: 8px; /* Slightly smaller border radius */
  }
  
  .virtual-facility-tour__brochure-heading {
    font-size: 22px;
    text-align: center; /* Center align */
    justify-content: center; /* Center align */
    padding-left: 0; /* Remove left padding */
  }
  
  .virtual-facility-tour__brochure-description {
    font-size: 20px;
    line-height: 1.4;
    padding: 0 10px; /* Add side padding */
  }
  
  .virtual-facility-tour__pdf-info {
    flex-wrap: wrap; /* Allow wrapping on very small screens */
    justify-content: center;
  }
  
  .virtual-facility-tour__pdf-label {
    width: 70px; /* Slightly smaller for mobile */
    height: 30px;
    font-size: 12px;
  }
  
  .virtual-facility-tour__pdf-size {
    font-size: 12px;
    padding: 6px 10px; /* Smaller padding for mobile */
    min-width: 45px;
  }
  
  .virtual-facility-tour__download-button {
    width: 100%;
    max-width: 300px;
    font-size: 16px;
    height: 45px;
    margin: 0 auto; /* Center the button */
  }
  
  .virtual-facility-tour__additional {
    padding: 0 15px; /* Add side padding */
  }
  
  .virtual-facility-tour__additional-description {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px; /* Further reduced margin */
    padding: 10px; /* Reduced padding */
  }
  
  .virtual-facility-tour__contact-button {
    width: 100%;
    max-width: 240px;
    font-size: 16px;
    height: 45px;
  }
}

@media screen and (max-width: 600px) {
  .virtual-facility-tour {
    padding: 40px 0;
  }
  
  .virtual-facility-tour__container {
    padding: 0 15px;
  }
  
  .virtual-facility-tour__title {
    font-size: 28px;
    margin-bottom: 15px; /* Further reduced gap */
    padding: 10px;
  }
  
  .virtual-facility-tour__subheading {
    font-size: 16px;
    margin-bottom: 30px;
    padding: 0 10px;
    line-height: 1.3; /* Better line spacing for mobile */
  }
  
  .virtual-facility-tour__content {
    gap: 25px;
    padding: 0 10px;
  }
  
  .virtual-facility-tour__image {
    min-height: 200px; /* Further reduced for very small screens */
    border-radius: 6px;
  }
  
  .virtual-facility-tour__brochure-heading {
    font-size: 20px;
    text-align: center;
    justify-content: center;
    padding-left: 0;
  }
  
  .virtual-facility-tour__brochure-description {
    font-size: 18px;
    line-height: 1.5;
    padding: 0 5px;
  }
  
  .virtual-facility-tour__pdf-info {
    flex-direction: column; /* Stack vertically on very small screens */
    gap: 10px;
    align-items: center;
  }
  
  .virtual-facility-tour__pdf-label {
    width: 60px;
    height: 25px;
    font-size: 11px;
  }
  
  .virtual-facility-tour__pdf-size {
    font-size: 11px;
    padding: 4px 6px; /* Even smaller padding for very small screens */
    min-width: 40px;
  }
  
  .virtual-facility-tour__download-button {
    max-width: 280px;
    font-size: 14px;
    height: 40px;
    margin: 0 auto;
  }
  
  .virtual-facility-tour__additional {
    padding: 0 10px;
  }
  
  .virtual-facility-tour__additional-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    padding: 5px;
  }
  
  .virtual-facility-tour__contact-button {
    max-width: 220px;
    font-size: 14px;
    height: 40px;
  }
}

/* Enhanced visibility for bigger screens */
@media screen and (min-width: 1700px) {
  .virtual-facility-tour__container {
    max-width: 1600px;
  }
  
  .virtual-facility-tour__title {
    font-size: 75px;
    margin-bottom: 60px;
  }
  
  .virtual-facility-tour__subheading {
    font-size: 30px;
    margin-bottom: 80px;
  }
  
  .virtual-facility-tour__content {
    gap: 100px;
    margin-bottom: 120px;
  }
  
  .virtual-facility-tour__left {
    width: 900px;
  }
  
  .virtual-facility-tour__image {
    max-width: 900px;
    height: 480px;
  }
  
  .virtual-facility-tour__right {
    width: 600px;
    padding-top: 60px;
  }
  
  .virtual-facility-tour__brochure-heading {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .virtual-facility-tour__brochure-description {
    font-size: 27px;
    max-width: 550px;
    margin-bottom: 40px;
  }
  
  .virtual-facility-tour__pdf-label {
    width: 100px;
    height: 40px;
    font-size: 16px;
  }
  
  .virtual-facility-tour__pdf-size {
    font-size: 16px;
    width: 100px;
    height: 40px;
  }
  
  .virtual-facility-tour__download-button {
    width: 420px;
    height: 60px;
    font-size: 24px;
  }
  
  .virtual-facility-tour__additional-description {
    font-size: 30px;
    max-width: 900px;
    margin-bottom: 40px;
  }
  
  .virtual-facility-tour__contact-button {
    width: 350px;
    height: 60px;
    font-size: 24px;
  }
}

@media screen and (min-width: 2000px) {
  .virtual-facility-tour__container {
    max-width: 1800px;
  }
  
  .virtual-facility-tour__title {
    font-size: 85px;
    margin-bottom: 80px;
  }
  
  .virtual-facility-tour__subheading {
    font-size: 35px;
    margin-bottom: 100px;
  }
  
  .virtual-facility-tour__content {
    gap: 120px;
    margin-bottom: 140px;
  }
  
  .virtual-facility-tour__left {
    width: 1000px;
  }
  
  .virtual-facility-tour__image {
    max-width: 1000px;
    height: 540px;
  }
  
  .virtual-facility-tour__right {
    width: 700px;
    padding-top: 80px;
  }
  
  .virtual-facility-tour__brochure-heading {
    font-size: 40px;
    margin-bottom: 35px;
  }
  
  .virtual-facility-tour__brochure-description {
    font-size: 28px;
    max-width: 650px;
    margin-bottom: 50px;
  }
  
  .virtual-facility-tour__pdf-label {
    width: 110px;
    height: 45px;
    font-size: 18px;
  }
  
  .virtual-facility-tour__pdf-size {
    font-size: 18px;
  }
  
  .virtual-facility-tour__download-button {
    width: 480px;
    height: 70px;
    font-size: 28px;
  }
  
  .virtual-facility-tour__additional-description {
    font-size: 35px;
    max-width: 1000px;
    margin-bottom: 50px;
  }
  
  .virtual-facility-tour__contact-button {
    width: 400px;
    height: 70px;
    font-size: 28px;
  }
}

@media screen and (min-width: 2400px) {
  .virtual-facility-tour__container {
    max-width: 2000px;
  }
  
  .virtual-facility-tour__title {
    font-size: 95px;
    margin-bottom: 100px;
  }
  
  .virtual-facility-tour__subheading {
    font-size: 40px;
    margin-bottom: 120px;
  }
  
  .virtual-facility-tour__content {
    gap: 80px;
    margin-bottom: 160px;
    align-items: center;
  }
  
  .virtual-facility-tour__left {
    width: 1000px;
  }
  
  .virtual-facility-tour__video {
    max-width: 1000px;
  }
  
  .virtual-facility-tour__right {
    width: 700px;
    padding-top: 0;
  }
  
  .virtual-facility-tour__brochure-heading {
    font-size: 45px;
    margin-bottom: 40px;
  }
  
  .virtual-facility-tour__brochure-description {
    font-size: 32px;
    max-width: 650px;
    margin-bottom: 60px;
  }
  
  .virtual-facility-tour__pdf-label {
    width: 120px;
    height: 50px;
    font-size: 20px;
  }
  
  .virtual-facility-tour__pdf-size {
    font-size: 20px;
  }
  
  .virtual-facility-tour__download-button {
    width: 550px;
    height: 80px;
    font-size: 32px;
  }
  
  .virtual-facility-tour__additional-description {
    font-size: 40px;
    max-width: 1200px;
    margin-bottom: 60px;
  }
  
  .virtual-facility-tour__contact-button {
    width: 450px;
    height: 80px;
    font-size: 32px;
  }
}

/* Extra Ultra Large screens 2800px+ for virtual facility tour */
@media screen and (min-width: 2800px) {
  .virtual-facility-tour__container {
    max-width: 2500px;
  }
  
  .virtual-facility-tour__title {
    font-size: 115px;
    margin-bottom: 120px;
  }
  
  .virtual-facility-tour__subheading {
    font-size: 48px;
    margin-bottom: 140px;
  }
  
  .virtual-facility-tour__content {
    gap: 100px;
    margin-bottom: 180px;
    align-items: center;
  }
  
  .virtual-facility-tour__left {
    width: 1300px;
  }
  
  .virtual-facility-tour__video {
    max-width: 1300px;
  }
  
  .virtual-facility-tour__right {
    width: 900px;
    padding-top: 0;
  }
  
  .virtual-facility-tour__brochure-heading {
    font-size: 55px;
    margin-bottom: 50px;
  }
  
  .virtual-facility-tour__brochure-description {
    font-size: 38px;
    max-width: 850px;
    margin-bottom: 70px;
  }
  
  .virtual-facility-tour__pdf-label {
    width: 140px;
    height: 60px;
    font-size: 24px;
  }
  
  .virtual-facility-tour__pdf-size {
    font-size: 24px;
  }
  
  .virtual-facility-tour__download-button {
    width: 680px;
    height: 95px;
    font-size: 38px;
    line-height: 95px;
  }
  
  .virtual-facility-tour__additional-description {
    font-size: 48px;
    max-width: 1400px;
    margin-bottom: 80px;
  }
  
  .virtual-facility-tour__contact-button {
    width: 550px;
    height: 95px;
    font-size: 38px;
    line-height: 95px;
  }
}

/* Ultra small mobile devices (350px and below) */
@media screen and (max-width: 350px) {
  .infrastructure {
    padding: 20px 0;
  }
  
  .infrastructure__container {
    padding: 0 10px;
  }
  
  .infrastructure__title {
    font-size: 28px;
    line-height: 1.2;
    margin: 0 auto 15px;
    max-width: 320px;
  }
  
  .infrastructure__subtitle {
    font-size: 14px;
    line-height: 1.3;
    max-width: 320px;
    margin: 0 auto 20px;
  }
  
  .gallery-container {
    max-width: 320px;
    padding: 0 10px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .gallery-item {
    max-width: 280px;
    margin: 0 auto;
  }
  
  .gallery-item h3 {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  
  .gallery-item p {
    font-size: 12px;
    line-height: 1.3;
  }
  
  .virtual-facility-tour {
    padding: 30px 10px;
  }
  
  .virtual-facility-tour__main-title {
    font-size: 26px;
    line-height: 1.2;
    max-width: 320px;
    margin-bottom: 15px;
  }
  
  .virtual-facility-tour__description {
    font-size: 14px;
    line-height: 1.3;
    max-width: 320px;
    margin-bottom: 20px;
  }
  
  .virtual-facility-tour__additional-description {
    font-size: 12px;
    line-height: 1.3;
    max-width: 320px;
    margin-bottom: 20px;
  }
  
  .virtual-facility-tour__contact-button {
    width: 180px;
    height: 40px;
    font-size: 14px;
    border-radius: 6px;
  }
}
