#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/brayne/world_map.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease-out;
  overflow: hidden;
}

.loader-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.world-map-bg {
  position: absolute;
  width: 120%;
  height: 120%;
  opacity: 0.1;
  z-index: 1;
}

.logo-container {
  position: relative;
  z-index: 3;
}

.loader-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  animation: logoGlow 2s ease-in-out infinite alternate;
}

.company-name {
  margin-top: 20px;
  font-weight: bold;
  letter-spacing: 3px;
}

.brayne {
  display: block;
  font-size: 2.5rem;
  color: rgb(133, 133, 133);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  animation: textGlow 2s ease-in-out infinite alternate;
}

.engineering {
  display: block;
  font-size: 1.2rem;
  color: #64b5f6;
  margin-top: 5px;
  font-weight: 300;
  letter-spacing: 8px;
}

.tagline {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #b0b0b0;
  font-style: italic;
  letter-spacing: 1px;
}

.loading-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 2px solid rgba(100, 181, 246, 0.3);
  border-radius: 50%;
  animation: pulse 3s ease-out infinite;
}

.pulse-ring.delay-1 {
  animation-delay: 1s;
  border-color: rgba(255, 255, 255, 0.2);
}

.pulse-ring.delay-2 {
  animation-delay: 2s;
  border-color: rgba(100, 181, 246, 0.1);
}

.loading-text {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.loading-dots {
  color: var(--footer);
  font-size: 1rem;
  letter-spacing: 2px;
  animation: loadingDots 1.5s infinite;
}

/* Animations */
@keyframes worldRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 30px rgba(182, 222, 255, 0.411));
  }
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
  100% {
    text-shadow: 0 0 20px rgba(164, 214, 255, 0.496);
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

@keyframes loadingDots {
  0%,
  20% {
    content: "Loading";
  }
  40% {
    content: "Loading.";
  }
  60% {
    content: "Loading..";
  }
  80%,
  100% {
    content: "Loading...";
  }
}

.loading-dots::after {
  content: "";
  animation: loadingDotsContent 1.5s infinite;
}

@keyframes loadingDotsContent {
  0%,
  20% {
    content: "";
  }
  40% {
    content: ".";
  }
  60% {
    content: "..";
  }
  80%,
  100% {
    content: "...";
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .loader-logo {
    width: 80px;
    height: 80px;
  }

  .brayne {
    font-size: 2rem;
  }

  .engineering {
    font-size: 1rem;
    letter-spacing: 4px;
  }

  .tagline {
    font-size: 0.8rem;
  }

  .pulse-ring {
    width: 150px;
    height: 150px;
  }
}

.slideshow-container {
  width: 100%;
  height: 100%;
  position: relative;
  background: rgb(20, 0, 51);
}

/* Hide the images by default */
.slide {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 2s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
  user-select: none;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.3);
}

.next {
  right: 5%;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 5%;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Dots container */
.dots-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 4;
}

/* The dots */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active-dot,
.dot:hover {
  background-color: #717171;
}

.hero {
  height: 90vh;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  max-width: 600px;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: white;
  color: black;
}

.arrow {
  margin-left: 1rem;
  font-size: 1.2rem;
}

.logo-overlay {
  position: absolute;
  right: 5%;
  top: 25%;
  transform: translateY(-50%);
  width: 60px;
  height: 30px;
  opacity: 0.8;
}

.word-header {
  text-align: center;
  padding: 50px 20px;
}

.word-header h1 {
  font-size: 2rem;
  color: #333;
  max-width: 50%;
  margin: 0 auto;
  line-height: 1.3;
  font-weight: 600;
}

.cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  height: fit-content;
  margin-bottom: 1.5rem;
  padding: 0 20px 50px;
  max-width: 80%;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.card {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: white;
}

.card-content h2 {
  font-size: 1.32em;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Media Queries */
@media (max-width: 768px) {
  .header h1 {
    font-size: 1.8rem;
  }

  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 100%;
    height: fit-content;
  }
  .card-image {
    object-fit: contain;
  }
}

@media (min-width: 992px) {
  .card {
    flex: 1;
    height: fit-content;
    min-width: 300px;
  }
  .card-image {
    object-fit: contain;
  }
}

.gis-container {
  max-width: 85%;
  margin: 0 auto;
  padding: 20px;
}

.gis-header {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.gis-header__title {
  font-size: 28px;
  color: #333;
  font-weight: 600;
}

.gis-grid {
  display: grid;
  height: fit-content;
  grid-template-columns: 65% 35%;
  grid-gap: 20px;
}

.gis-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.gis-card:hover {
  transform: translateY(-5px);
}

.gis-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gis-main-card {
  height: inherit;
  position: relative;
}

.gis-small-card {
  height: inherit;
  position: relative;
}

.gis-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: #fff;
}

.gis-card__tag {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.gis-card__title {
  font-size: 22px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.gis-small-card .gis-card__title {
  font-size: 18px;
}

.gis-card__subtitle {
  font-size: 14px;
  opacity: 0.8;
}

.gis-sidebar {
  height: inherit;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Media queries */
@media (max-width: 992px) {
  .gis-grid {
    grid-template-columns: 1fr;
  }

  .gis-main-card {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .gis-header__title {
    font-size: 24px;
  }

  .gis-main-card {
    height: fit-content;
  }

  .gis-small-card {
    height: fit-content;
  }

  .gis-card__title {
    font-size: 18px;
  }

  .gis-small-card .gis-card__title {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .gis-container {
    padding: 10px;
  }

  .gis-header {
    margin-bottom: 20px;
  }

  .gis-header__title {
    font-size: 20px;
  }

  .gis-grid {
    grid-gap: 10px;
  }

  .gis-main-card {
    height: 300px;
  }

  .gis-card__overlay {
    padding: 15px;
  }
}

.story_tell_container {
  max-width: 100%;
  margin: 0 auto;
  padding: 4rem;
}

.story_header {
  text-align: center;
  margin-bottom: 40px;
}

.menu {
  padding: 10px 0;
  text-align: center;
}

.menu ul {
  list-style-type: none;
}

.menu li {
  display: inline;
  margin: 0 15px;
  padding: 1rem;
}

.menu a {
  text-decoration: none;
  font-size: 1.1em;
}

.menu li:hover {
  border-bottom: 0.4rem solid var(--accent-color);
}

.story {
  display: flex;
  width: 80%;
  margin: 0 auto;
  flex-direction: row;
}

.story .video-container {
  text-align: center;
  width: 50%;
  margin-bottom: 20px;
}

video {
  width: 100%;
  height: 100%;
}

.story-detail {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2.5em;
}

h2 {
  margin-top: 20px;
  font-size: 1.5em;
}

h3 {
  margin-top: 10px;
  font-size: 1.2em;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background-color: #0056b3;
}

/* Media Queries */
@media (min-width: 768px) {
  .story {
    flex-direction: row;
  }

  .story .video-container {
    margin-right: 20px;
  }

  .story-detail {
    flex: 2;
  }
}

.main-content {
  padding: 120px 5% 5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content-left {
  max-width: 1000px;
}

.main-heading {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 400;
}

.sub-content {
  font-size: 1rem;
  line-height: 1.5;
}

.highlight {
  color: #4caf50;
}

.footer-text {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 800px;
  align-self: flex-end;
  text-align: right;
}

.solutions-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 2rem 1rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.326);
}
div.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/rov.jpg");
  background-size: cover;
  background-position: center;
}

@media (max-width: 990px) {
  .hero-background {
    background-size: cover;
    background-position-x: 85%;
  }

  .story_tell_container {
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem;
  }
  .story-detail {
    padding: 5px;
  }

  .story {
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.354);
}

.content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.headline {
  color: white;
  font-size: clamp(2.5rem, 3vw, 2.5rem);
  font-weight: bold;
  margin-top: 4rem;
  line-height: 1.2;
}

.info-section {
  max-width: 100%;
  place-items: flex-end;
  text-align: right;
  margin-bottom: 4rem;
}

.info-text {
  color: white;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.career-link {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 1.125rem;
}

div.hero .arrow {
  margin-left: 0.75rem;
  transition: transform 0.3s ease;
}

.career-link:hover .arrow {
  transform: translateX(10px);
}

div.hero .side-label {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}
.values-container .side-label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

.values-container {
  position: relative;
  max-width: 1600px;
  height: 90vh;
  align-content: center;
  margin: 0 auto;
  padding: 4rem 4rem 4rem;
}

.values-title {
  font-size: 3rem;
  margin-bottom: 4rem;
  font-weight: normal;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
}

.value-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.value-icon {
  width: 48px;
  height: 48px;
}

.value-title {
  font-size: 2.5rem;
  font-weight: normal;
}

.value-description {
  color: #333;
  margin-bottom: 2rem;
}

.arrow-link {
  width: 32px;
  transition: transform 0.3s ease;
}

.value-card:hover .arrow-link {
  transform: translateX(10px);
}

@media (max-width: 768px) {
  .content-area {
    position: sticky;
    top: 0;
    padding: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
    height: 100%;
    padding-bottom: 56.25%;
  }

  .content-area video {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-content {
    left: 5%;
    right: 5%;
  }

  .logo-overlay {
    width: 200px;
    height: 200px;
    opacity: 0.4;
  }
  .main-heading {
    font-size: 2.5rem;
  }

  .sub-content {
    font-size: 1.2rem;
  }

  .footer-text {
    max-width: 100%;
    text-align: left;
    margin-top: 2rem;
  }
}

@media (max-width: 1200px) {
  .slideshow-container {
    height: 90%;
  }

  .values-container {
    max-width: 100%;
    height: fit-content;
  }

  .values-grid {
    gap: 3rem;
  }

  .values-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
  }

  .value-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 992px) {
  .values-container {
    padding: 6rem 3rem 3rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .values-container {
    padding: 5rem 2rem 2rem;
  }

  .values-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .side-label {
    display: none;
  }
}

@media (max-width: 480px) {
  .values-container {
    padding: 4rem 1.5rem 1.5rem;
  }

  .values-title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }

  .value-title {
    font-size: 1.5rem;
  }

  .header {
    padding: 1rem 1.5rem;
  }

  .logo {
    height: 32px;
  }
}
.partners-container {
  position: relative;
  min-height: 60vh;
  background-image: url("../assets/brayne/assets/DimCon1.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4rem;
  color: white;
}

.partners-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.partners-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.partners-heading {
  font-size: clamp(2rem, 2vw, 3rem);
  font-weight: normal;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.partners-description {
  font-size: clamp(0.5rem, 1vw, 1rem);
  max-width: 900px;
  line-height: 1.5;
}

.partners-sidebar {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  color: white;
  z-index: 3;
}

.partners-cta-wrapper {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  max-width: 500px;
  text-align: right;
}

.partners-cta-text {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.partners-cta-link {
  display: inline-flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.partners-cta-link:hover {
  transform: translateX(10px);
}

.partners-arrow {
  margin-left: 0.75rem;
  width: 24px;
}

/* Media Queries */
@media (max-width: 1200px) {
  .partners-container {
    padding: 3rem;
  }

  .partners-cta-wrapper {
    max-width: 400px;
  }
}

@media (max-width: 992px) {
  .partners-container {
    padding: 2.5rem;
  }

  .partners-description {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .partners-container {
    padding: 2rem;
    text-align: left;
  }

  .story .video-container {
    text-align: center;
    width: 100%;
  }

  .partners-cta-wrapper {
    align-self: flex-start;
    text-align: left;
    max-width: 100%;
  }

  .partners-sidebar {
    display: none;
  }
}

@media (max-width: 480px) {
  .partners-container {
    padding: 1.5rem;
  }

  .partners-heading {
    font-size: 2rem;
  }

  .partners-description {
    font-size: 1.125rem;
  }

  .partners-cta-text {
    font-size: 1rem;
  }
}

.exp-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 4rem;
}

.exp-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: normal;
}

.exp-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.exp-slider {
  display: flex;
  transition: transform 0.5s ease;
  gap: 24px;
}

.exp-card {
  min-width: calc(33.333% - 16px);
  position: relative;
  height: 70vh;
  aspect-ratio: 6/7;
  overflow: hidden;
}

.exp-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top right,
    rgba(20, 1, 71, 0.831),
    transparent
  );
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.exp-card-category {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.exp-card-title {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.exp-card-description {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.exp-card-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.exp-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding: 0 1rem;
}

.exp-nav-dots {
  display: flex;
  gap: 0.5rem;
}

.exp-nav-dot {
  width: 24px;
  height: 3px;
  border-radius: 20px;
  background: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.exp-nav-dot.active {
  background: #000;
}

.exp-nav-arrow {
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.exp-nav-arrow:hover {
  opacity: 0.7;
}

@media (max-width: 1200px) {
  .exp-card {
    min-width: 90%;
  }
  .exp-navigation {
    justify-content: center;
  }
  .exp-container {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .exp-card {
    min-width: 100%;
  }

  .exp-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .exp-card-title {
    font-size: 1.75rem;
  }
}

.remarks {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../assets/pexels-kelly-1179532-2887289.jpg") center/cover no-repeat;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.rem-logo {
  width: 60px;
  height: 60px;
  background-color: white;
  padding: 0.5rem;
}

.remarks-content {
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.rem-main-heading {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.subtext {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.remarks-cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.remarks-cta-button:hover {
  background: white;
  color: black;
}

.rem-arrow {
  margin-left: 0.5rem;
}

/* Large Screens (1200px and below) */
@media (max-width: 1200px) {
  .values-grid {
    gap: 3rem;
  }

  .values-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
  }

  .value-title {
    font-size: 1.75rem;
  }

  .partners-container {
    padding: 3rem;
  }

  .partners-cta-wrapper {
    max-width: 400px;
  }

  .exp-card {
    min-width: calc(80% - 12px);
  }
}

/* Medium Screens (992px and below) */
@media (max-width: 992px) {
  .values-container {
    padding: 6rem 3rem 3rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-container {
    padding: 2.5rem;
  }

  .partners-description {
    max-width: 700px;
  }
}

/* Tablet Screens (768px and below) */
@media (max-width: 768px) {
  /* Hero Section */
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-content {
    left: 5%;
    right: 5%;
  }

  .logo-overlay {
    width: 200px;
    height: 200px;
    opacity: 0.4;
  }

  /* Main Content */
  .main-heading {
    font-size: 2.5rem;
  }

  .sub-content {
    font-size: 1.2rem;
  }

  .footer-text {
    max-width: 100%;
    text-align: left;
    margin-top: 2rem;
  }

  /* Values Section */
  .values-container {
    padding: 5rem 2rem 2rem;
  }

  .values-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .side-label {
    display: none;
  }

  /* Partners Section */
  .partners-container {
    padding: 2rem;
    text-align: left;
  }

  .partners-cta-wrapper {
    align-self: flex-start;
    text-align: left;
    max-width: 100%;
  }

  .partners-sidebar {
    display: none;
  }

  /* Experience Section */
  .exp-card {
    min-width: 100%;
  }

  .exp-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .exp-card-title {
    font-size: 1.75rem;
  }
}

/* Mobile Screens (480px and below) */
@media (max-width: 480px) {
  /* Values Section */
  .values-container {
    padding: 4rem 1.5rem 1.5rem;
  }

  .values-title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }

  .value-title {
    font-size: 1.5rem;
  }

  .header {
    padding: 1rem 1.5rem;
  }

  .logo {
    height: 32px;
  }

  /* Partners Section */
  .partners-container {
    padding: 1.5rem;
  }

  .partners-heading {
    font-size: 2rem;
  }

  .partners-description {
    font-size: 1.125rem;
  }

  .partners-cta-text {
    font-size: 1rem;
  }
}
