@import "tailwindcss";
body {
    font-family: 'Manrope', sans-serif !important;
}
.learn{
    text-decoration: none;
    color: black;
    transition: all 0.1s ease;
}
.font-grad{
text-transform: uppercase;
background: linear-gradient(180deg, #262626 0%, #FFFFFF 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
}
.timebut{
    color: white;
}
/* Active state (you can use !important if needed) */
.timeline-btn.active {
  background-color: white !important;
  color: black !important;
}
.learn:hover{
    color: blue;
    font-size: 1.05vw;
}
/* The cursor aura element */
    #cursorAura {
      position: fixed;
      top: 0;
      left: 0;
      width: 150px;
      height: 150px;
      pointer-events: none; /* Allows mouse events to pass through */
      transform: translate(-50%, -50%);
      z-index: 9999;
      transition: background 0.1s; /* Smooth transitions for gradient changes */
    }
.carousel-caption {
    left: 5% !important;
    top: 35% !important;
    width: 40vw !important;
    text-align: left !important;
}
.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
}
.carousel-caption p {
    font-size: 1.2rem;
}
.bottomtext{
    position:absolute;
    bottom: 6vw !important;
    left: -0.5vw !important;
}
.sidebar-menu {
    position: absolute;
    top: 50%;
    right: 3%;
    text-align: right;
}
.sidebar-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 1.5rem;
}
.sidebar-menu a.active {
    font-weight: bold;
    border-right: 3px solid white;
    padding-right: 10px;
}
.navigation-buttons {
    position: absolute;
    bottom: 10%;
    left: 7.5%;
    display: flex;
    gap: 10px;
}
.navigation-buttons button {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px;
    width: 50px;
    height: 50px;
}
.navigation-buttons .carousel-control-prev{
    left: 1vw;
}
.stability-section {
  display: flex;
  justify-content: center;
  position: relative;
  background: url('images/BG.png') center/cover no-repeat;
  padding: 80px;
}
.stability-content {
  background: white;
  padding: 40px;
  max-width: 600px;
}
.stability-content h2 {
  font-size: 2vw;
  font-weight: 600;
}
.stability-content p {
  font-size: 1vw;
}
.stability-images {
  width: 30vw;
  position: relative;
}
.stability-images img {
  position: absolute;
}
.stability-images img:nth-child(1) {
  top: 0;
  left: 2vw;
  width: 26vw;
}
.stability-images img:nth-child(2) {
  width: 25vw;
  top: 15vw;
  left: 18vw;
}
.stability-content button {
  margin-top: 1vw;
}

/* Mobile responsive styles without affecting desktop */
@media (max-width: 768px) {
  .stability-section {
    flex-direction: column;
    padding: 20px;
  }
  .stability-content {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .stability-content h2 {
    font-size: 24px;  /* fixed size for better readability */
  }
  .stability-content p {
    font-size: 16px;
  }
  .stability-images {
    width: 100%;
    position: static; /* remove absolute positioning */
    display: block;
  }
  .stability-images img {
    position: static;
    width: 100%;
    margin:auto;
    margin-bottom: 10px;
  }
  .stability-content button {
    margin-top: 10px;
  }
  .stability-images img:nth-child(1) {
      width: 80vw;
    }
    .stability-images img:nth-child(2) {
      width: 80vw;
    }
}

/* Desktop styles remain unchanged */
  .timeline-text {
    width: 20vw;
  }
  .timeline-btn:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.7vw; /* Adjust to control spacing */
    top: 50%;
    transform: translateY(-50%);
    width: 0.5vw; /* Adjust to control line length */
    height: 2px;
    border-top: 3px dotted gray;
    z-index: 0;
  }
  
  /* Mobile responsive adjustments */
  @media (max-width: 768px) {
    /* Adjust timeline text container to use more of the viewport width */
    .timeline-text {
      width: 80vw;
    }
    /* Reduce spacing around the timeline year */
    #timeline-year {
      top: -20px !important;
      left: -20px !important;
      font-size: 3.5rem; /* Approx. equivalent to text-6xl */
    }
    /* Adjust margins for the text block */
    .timeline-text {
      margin-top: 2rem !important;
      margin-left: 1rem !important;
    }
    /* Adjust the pseudo-element for buttons with pixel units */
    .timeline-btn:not(:last-child)::after {
      right: -8px;
      width: 4px;
    }
    /* Optionally reduce gaps between buttons */
    .space-x-2 > :not([hidden]) ~ :not([hidden]) {
      margin-left: 0.5rem;
    }
  }

.page4 {
    width: 100%;
    padding: 4rem 2rem;
    background-color: #f8f8f8; /* Light background for contrast */
}

.page4 .top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 2vw;
    margin-bottom: 4rem;
}

.page4 .top .left p {
    display: inline-block;
    background-color: #e0e0e0; /* Grey badge background */
    color: #000; /* Black text */
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page4 .top .left h2 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #000; /* Black text */
    line-height: 1.4;
}

.page4 .top .right {
    color: #333; /* Slightly softer black for readability */
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.6;
}

.page4 .top .right span {
    display: block;
    margin-bottom: 1.5rem;
}

/* Bottom Section */
.page4 .bottom {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.page4 .bottom .imgtxt {
    position: relative;
    width: 100%;
    max-width: 28vw;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.page4 .bottom .imgtxt img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease;
}

.imgtxt:hover img {
    filter: blur(5px);
}

.page4 .bottom .imgtxt h3 {
    position: absolute;
    left: 1rem;
    bottom: 10rem; /* Start higher for the heading */
    font-size: 2.5vw;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.page4 .bottom .imgtxt p {
    position: absolute;
    left: 1rem;
    bottom: 1rem; /* Description sits just below the heading */
    font-size: 1vw;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .page4 {
        padding: 2rem 1rem;
    }
    .page4 .top {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    .page4 .top .left h2 {
        font-size: 2.5rem; /* Reduced headline size */
    }
    .page4 .top .right {
        font-size: 0.9rem;
        max-width: 100%;
    }
    .page4 .bottom {
        gap: 1rem;
        justify-content: center;
    }
    .page4 .bottom .imgtxt {
        max-width: 90%;
    }
    .page4 .bottom .imgtxt h3 {
        font-size: 2rem; /* Fixed size for better legibility on mobile */
        bottom: 5rem;
    }
    .page4 .bottom .imgtxt p {
        font-size: 1rem; /* Fixed size */
        bottom: 1rem;
    }
}

.slopeback{
    position:relative;
    width: 100%;
    height: 100%;
}
@keyframes blink {
    0%, 100% { 
    transform: scale(1.1); 
  }
  50% { 
    transform: scale(1); 
  }
  }
.slopeback .location{
    animation: blink 1s infinite;
    position: absolute;
    width: 50px;
    height: 50px;
}
.hovertextblock{
   position: absolute;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in;
}
.hovertextblock span{
    display: none;
    padding-right: 1vw;
}
.hovertextblock:hover {
  background: white;
}

.hovertextblock:hover span {
  display: block;
}
.slopeback .l1{
    top: 41.9%;
    left: 2.7%;
}
.slopeback .l2{
        top: 60.6%;
        left: 11%;
}
.slopeback .l3{
    top: 49.9%;
    left: 22.6%;
}

.slopeback .l4{
    top: 57.3%;
    left: 32.1%;
}
.slopeback .l5{
    top: 69.3%;
    left: 32.1%;
}
.slopeback .l6{
    top: 80.5%;
    left: 24.8%;
}
.slopeback .l7{
    top: 44.3%;
    left: 46%;
}
.slopeback .l8{
    top: 65.2%;
    left: 47.2%;
}
.slopeback .l9{
    top: 55.3%;
    left: 60.2%;
}
.slopeback .l10{
   top: 78.7%;
   left: 60.2%; 
}
.slopeback .l11{
    top: 68.6%;
    left: 65.2%;
}
.slopeback .l12{
    top: 64.4%;
    left: 69.3%;
}
.slopeback .l13{
    top: 21%;
    left: 81.2%;
}
.slopeback .l14{
    top: 59.4%;
    left: 82.5%;
}
.slopeback .l15{
    top: 66.5%;
    left: 83.2%;
}
.slopeback .l16{
    top: 50.5%;
    left: 50.2%;
}
/* Responsive */
@media (min-width: 768px) {
    .page4 .top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .page4 .top .left,
    .page4 .top .right {
        width: 48%;
    }
}

.sustainability-section {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    text-align: center;
    padding: 4rem 2rem;
}

.sustainability-section .badge {
    display: inline-block;
    background-color: #333; /* Dark grey badge */
    color: #fff;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.sustainability-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sustainability-section .description {
    color: #aaa; /* Light grey text */
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Card Hover (if you use .card1 styles) */
.card1 {
    border: 2px solid white;
    color: white;
    backdrop-filter: blur(5px);
    transition: all 0.3s linear;
}
.card1 h2 {
    color: white;
}
.card1 img {
    filter: invert(1);
}
.card1:hover {
    background: white;
    color: black;
}
.card1:hover img {
    filter: none;
}
.card1:hover h2 {
    color: black;
}
@media (max-width: 768px) {
    .card1{
        background: white;
        color: black;
    }
    .card1 img {
        filter: none;
    }
    .card1 h2 {
        color: black;
    }
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.card {
    background-color: #111; /* Darker card background */
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 25vw;
    text-align: left;
    position: relative;
}

.counter-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.card .amount {
    font-size: 2rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.amount.blue { color: #1e40af; }   /* Blue for Infrastructure */
.amount.orange { color: #f97316; } /* Orange for Oil & Gas */
.amount.green { color: #10b981; }  /* Green for Utilities */

.card-description {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Button Styling */
.btn-container {
    margin-top: 3rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sustainability-section {
        padding: 2rem 1rem;
    }
    .sustainability-section .header p {
        width: 50vw; /* Increase width on mobile for better visibility */
        font-size: 1rem;
    }
    .sustainability-section h1 {
        font-size: 2rem;
    }
    .sustainability-section .description {
        width: 80vw !important; 
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    .sustainability-section .description p{
        width: 80vw !important; 
    }
    .cards-container {
        flex-direction: column;
        gap: 1rem;
    }
    .card {
        max-width: 90%;
        margin: 0 auto;
        padding: 1.5rem;
    }
    .card h3 {
        font-size: 1.1rem;
    }
    .card .amount {
        font-size: 1.5rem;
    }
    .card-description {
        font-size: 0.8rem;
    }
    .btn-container {
        margin-top: 2rem;
    }
}


.app-btn {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.app-btn:hover {
    background-color: #fff;
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Desktop styles */
.slopeback {
  position: relative;
  width: 100%;
  /* For desktop, the container takes its natural height */
  height: 100%;
}

@keyframes blink {
  0%, 100% { 
    transform: scale(1.1); 
  }
  50% { 
    transform: scale(1); 
  }
}

.slopeback .location {
  animation: blink 1s infinite;
  position: absolute;
  width: 50px;
  height: 50px;
}

.hovertextblock {
  position: absolute;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in;
}

.hovertextblock span {
  display: none;
  padding-right: 1vw;
}

.hovertextblock:hover {
  background: white;
}

.hovertextblock:hover span {
  display: block;
}

/* Example absolute positioning for dots */
.slopeback .l1 { top: 41.9%; left: 2.7%; }
.slopeback .l2 { top: 60.6%; left: 11%; }
.slopeback .l3 { top: 49.9%; left: 22.6%; }
.slopeback .l4 { top: 57.3%; left: 32.1%; }
.slopeback .l5 { top: 69.3%; left: 32.1%; }
.slopeback .l6 { top: 80.5%; left: 24.8%; }
.slopeback .l7 { top: 44.3%; left: 46%; }
.slopeback .l8 { top: 65.2%; left: 47.2%; }
.slopeback .l9 { top: 55.3%; left: 60.2%; }
.slopeback .l10 { top: 78.7%; left: 60.2%; }
.slopeback .l11 { top: 68.6%; left: 65.2%; }
.slopeback .l12 { top: 64.4%; left: 69.3%; }
.slopeback .l13 { top: 21%; left: 81.2%; }
.slopeback .l14 { top: 59.4%; left: 82.5%; }
.slopeback .l15 { top: 66.5%; left: 83.2%; }
/* .l16 exists in CSS but isn’t used in HTML */

/* .page5 layout */
.page5 {
  width: 100%;
  padding: 4rem 0;
  background-color: #f8f8f8;
}

.page5 .top {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2vw 4vw;
  margin-bottom: 4rem;
}

.page5 .top .left p {
  display: inline-block;
  background-color: #e0e0e0;
  color: #000;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page5 .top .left h2 {
  font-size: 3.5rem;
  font-weight: bold;
  color: #000;
  line-height: 1.4;
}

.page5 .top .right {
  color: #333;
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.6;
}

.page5 .top .right span {
  display: block;
  margin-bottom: 1.5rem;
}

.page5 img {
  width: 100vw;
  margin: auto;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  /* Adjust overall page padding */
  .page5 {
    padding: 0;
  }
  .page5 .top {
    flex-direction: column;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
  }
  .page5 .top .left h2 {
    font-size: 2.5rem;
  }
  .page5 .top .right {
    font-size: 0.9rem;
    max-width: 100%;
  }
  .slopetrack{
      width: 100%;
      overflow: auto;
  }
  .slopeback{
      width: 200%;
  }
  .page5 img{
      width: 200%;
  }
  .slopeback .location {
      width: 25px;
      height: 25px;
  }
  .mobileonlytext {
      text-align: center;
      font-size : 2em;
  }
  .hovertextblock.active span {
    display: block;
    }
    .hovertextblock.active {
        background: white;
    }
}


.page7 {
    width: 100%;
    padding: 4rem 2rem;
    background-color: #f8f8f8; /* Light background for contrast */
}

.page7 .top {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2vw;
    margin-bottom: 4rem;
}

.page7 .top .left p {
    display: inline-block;
    background-color: #e0e0e0; /* Grey badge background */
    color: #000; /* Black text */
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page7 .top .left h2 {
    font-size: 2.5vw;
    font-weight: bold;
    color: #000; /* Black text */
    line-height: 1.4;
}

.page7 .top .right {
    color: #333; /* Slightly softer black for readability */
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.6;
}

.page7 .top .right span {
    display: block;
    margin-bottom: 1.5rem;
}

/* Bottom Section */
.page7 .bottom {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.page7 .bottom .imgtxt {
    position: relative;
    background-color: #000;
    width: 100%;
    max-width: 20vw;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.page7 .bottom .imgtxt img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease;
}

.page7 .bottom .imgtxt h3 {
    position: absolute;
    left: 1rem;
    bottom: 7rem; /* Start higher for the heading */
    font-size: 2vw;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.page7 .bottom .imgtxt p {
    position: absolute;
    left: 1rem;
    bottom: 1rem; /* Description sits just below the heading */
    font-size: 1vw;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    /* Reduce overall padding and center-align top content */
    .page7 {
        padding: 2rem 1rem;
    }
    .page7 .top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem 2rem;
        margin-bottom: 2rem;
    }
    .page7 .top .left,
    .page7 .top .right {
        width: 100%;
    }
    .page7 .top .left h2 {
        /* Use fixed rem value for consistency on small screens */
        font-size: 2rem;
    }
    .page7 .top .right {
        font-size: 0.9rem;
        max-width: 100%;
    }
    /* Adjust bottom section cards */
    .page7 .bottom {
        gap: 1rem;
        justify-content: center;
    }
    .page7 .bottom .imgtxt {
        max-width: 90%;
    }
    .page7 .bottom .imgtxt h3 {
        font-size: 1.5rem;
        bottom: 5rem;
    }
    .page7 .bottom .imgtxt p {
        font-size: 1rem;
        bottom: 1rem;
    }
}


/* Existing Desktop CSS */
.Featured-products-section {
    color: #fff; /* White text */
    text-align: center;
    padding: 4rem 2rem;
}

.Featured-products-section .badge {
    display: inline-block;
    background-color: #eee;
    color: black;
    padding: 0.3rem 0.8rem;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-radius: 0px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.Featured-products-section h1 {
    font-size: 2.5rem;
    width: 50vw;
    margin: auto;
    font-weight: 500;
    margin-bottom: 1rem;
}

.Featured-products-section .description {
    color: #4b4b4b; /* Light grey text */
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.card2 {
    padding: 1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 20vw;
    text-align: left;
    position: relative;
    transition: transform 0.1s ease;
    cursor: pointer;
}

.card2:hover {
    transform: scale(1.05);
}

.card2 h2 {
    font-size: 1.8vw;
}

.card2 img {
    margin: auto;
    margin-bottom: 1.5em;
}

.card2 p {
    font-size: 1vw;
    font-weight: 600;
}

.card2 span {
    display: block;
    width: 15vw;
}

.learnmore {
    margin-top: 2vw;
    border: 2px solid black;
    padding: 1rem;
    font-weight: bold;
    transition: all 0.3s;
}

.learnmore:hover {
    color: white;
    background-color: black;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    .Featured-products-section {
        padding: 2rem 1rem;
    }
    .Featured-products-section h1 {
        font-size: 2rem;
        width: 90%;
    }
    .Featured-products-section .description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    .cards-container {
        gap: 1rem;
    }
    .card2 {
        max-width: 90%;
        margin: 0 auto;
        padding: 1rem;
    }
    .card2 h2 {
        font-size: 1.5rem;
    }
    .card2 p {
        font-size: 0.9rem;
    }
    .card2 span {
        width: 90%;
        font-size: 0.9rem;
    }
    .learnmore {
        margin-top: 2rem;
        padding: 0.75rem;
        font-size: 1rem;
    }
    .page7 .cards-container {
        flex-direction: column;
    }
}


.videopage {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
}

.videopage .badge {
    display: inline-block;
    color: white;
    padding: 0.5rem 1rem;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.videopage h1 {
    font-size: 2.5rem;
    width: 90%;
    max-width: 800px;
    margin: auto;
    font-weight: 500;
    margin-bottom: 1rem;
}

.videobox {
    position: relative;
}

.videopage img {
    margin: auto;
    display: block;
}

.videopage .playbutton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

/* Hover Effect for Play Button */
.videopage .playbutton:hover {
    transform: translate(-50%, -50%) scale(1.1);
    transition: transform 0.3s ease-in-out;
}
.card3 {
    background-color: black;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 20vw;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease;
}
.card3 a{
    text-decoration:none;
    color: white;
}
.card3 h2{
    color: white;
    font-size: 1.8vw;
}
.card3 img{
    margin: auto;
    margin-bottom: 1.5em;
}
.card3 p{
    font-size: 1vw;
    font-weight: 600;
}
.card3 span{
    display: block;
    width: 15vw;
}
.card3 .text{
    padding: 1vw;
}
/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
    .card3 {
        max-width: 90%;  /* Cards take up most of the viewport width */
        margin: 0 auto 1rem; /* Center the cards and add bottom spacing */
    }
    .card3 h2 {
        font-size: 1.5rem;  /* Use rem units for better consistency on small screens */
    }
    .card3 span {
        width: 100%;  /* Allow text to fill the card */
        font-size: 1rem;
    }
    .card3 p {
        font-size: 0.9rem;
    }
    .card3 .text {
        padding: 1rem;
    }
}
.page12{
    display: flex;
    padding: 5vw;  
    height: 40vw;
    justify-content: center;
}
.page12 h2{
    font-size: 2.5vw;
    color: white;
    margin-bottom: 1vw;
}
.page12 p{
    font-size: 1vw;
}
.page12 .left{
    width: 40vw;
}
.page12 .right{
    width: 40vw;
    margin-left: 8vw;
    position: relative;
}
.page12 .right img{
    position: absolute;
}
.page12 .whitebox{
    width: 10vw;
    height: 10vw;
    background-color: white;
    position: absolute; 
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
}
.page12 .image1{
    width: 22vw;
}
.page12 .image2{
    right: 5vw;
    top: 0;
    width: 10vw;
    height: 10vw;
}
.page12 .image3{
    width: 10vw;
    bottom: 0;
    left: 5vw;
}
.page12 .image4{
    right: -5.5vw;
    bottom: 0;
    width: 25vw;
    height: 17vw;
}
.page12 .image5{
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 4vw;
}
.page12 button{
    border: 2px solid white;
    padding: 0.5vw 1vw;
    transition: all 0.2s;
}
.page12 button:hover{
    border: 2px solid black;
    background-color: white;
    color: black;
}
@media (max-width: 768px) {
  /* Stack left and right vertically, let height adjust automatically */
  .page12 {
    flex-direction: column;
    justify-content: flex-start;
    padding: 4vw 3vw;
    height: 52em;
  }
  
  /* Left block: use full width, center text */
  .page12 .left {
    width: 100%;
    text-align: center;
  }
  .page12 h2 {
    font-size: 1.8rem; /* Adjust heading size for mobile */
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  .page12 p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .page12 button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    margin-top: 1rem;
  }
  
  /* Right block: use full width and remove left margin */
  .page12 .right {
    width: 100%;
    margin-left: 0;
    margin-top: 10rem;
    position: relative;
  }
  
  /* Adjust whitebox size */
  .page12 .whitebox {
    width: 20vw;
    height: 20vw;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
  }
  
  /* Adjust images positioning and sizes.
     You may need to tweak these values to best suit your mobile design. */
  .page12 .image1 {
    width: 50vw;
    position: relative; /* Change from absolute to relative so it flows */
    margin: 0 auto 1rem;
  }
  .page12 .image2 {
    position: absolute;
    right: 5vw;
    top: 0;
    width: 35vw;
    height: 25vw;
  }
  .page12 .image3 {
    position: absolute;
    width: 35vw;
    bottom: 0;
    left: 5vw;
  }
  .page12 .image4 {
    position: absolute;
    right: -5vw;
    bottom: 0;
    width: 45vw;
    height: 30vw;
  }
  .page12 .image5 {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 8vw;
  }
}

.collaborate h1{
    font-size: 2.5vw;
    margin-bottom: 1vw;
    font-weight: bold;
}
.collaborate p{
    margin-bottom: 1vw;
}
.collaborate{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5vw 10vw;
    border: 5px solid black;
    padding: 3vw 6vw;
    padding-right: 0;
}
.collaborate button{
    border-radius: 0;
    font-weight: 600;
    font-size: 1.2vw;
}
.mapcontainer{
  perspective: 1000px; /* Adjust this value to control depth */
}

.map-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.map-image {
  display: block;
  width: 100%;
  transition: filter 0.3s ease;
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.map-container:hover .map-image {
  filter: blur(4px);
}

.map-container:hover .map-overlay {
  opacity: 1;
  pointer-events: auto;
}

.explore-btn {
  background: white;
  color: black;
  padding: 12px 24px;
  border: none;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  z-index: 20;
}


.map {
  display: block;
  width: 100%;
  transition: transform 0.3s ease, filter 0.3s ease;
  transform-style: preserve-3d;
}
/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
  .collaborate {
    flex-direction: column;      /* Stack vertically */
    margin: 2rem 1rem;           /* Reduced margins */
    padding: 2rem;               /* Reduced padding */
    border-width: 2px;           /* Thinner border on mobile */
  }
  .collaborate h1 {
    font-size: 1.8rem;           /* Fixed font size on mobile */
    margin-bottom: 1rem;
  }
  .collaborate p {
    font-size: 1rem;             /* Fixed font size for better readability */
    margin-bottom: 1rem;
  }
  .collaborate button {
    font-size: 1rem;             /* Slightly smaller button text */
    padding: 0.8rem 1.5rem;       /* Adjust button padding */
  }
  .mapcontainer {
    margin-top: 2rem;
    width: 100%;
  }
  .map {
    width: 100%;
  }
}
/* On hover, tilt the image and add a drop shadow for a 3D effect */
.map:hover {
  transform: rotateX(10deg) rotateY(10deg);
  filter: drop-shadow(10px 10px 15px rgba(0, 0, 0, 0.5));
}
.page8 button:hover{
    color: black !important;
}
.card3:hover{
    transform: scale(1.1);
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100vh; /* full viewport height on desktop */
  }
  /* Mobile adjustments */
  @media (max-width: 768px) {
    /* Reduce image height on mobile */
    .carousel-item img {
      height: 80vh; /* adjust as needed for mobile devices */
    }
    /* Center and reposition captions for a better mobile view */
    .carousel-caption {
      bottom: 30% !important;       /* moves caption higher on mobile */
      left: 5% !important;
      right: 5% !important;
      width: 75vw!important;
      padding: 0 1rem;
    }
    .navigation-buttons{
        display: none !important;
    }
    .sidebar-menu a{
        font-size: 0.5em;
    }
    /* Adjust font sizes for better readability on smaller screens */
    .carousel-caption h1 {
      font-size: 1.75rem;
    }
    .carousel-caption p {
      font-size: 1rem;
    }
    .carousel-caption span {
      font-size: 0.875rem;
    }