/*=============== VARIABLES ===============*/
:root {
  --default-font: "Figtree", serif;

  /*========== Font weight ==========*/
  --weight-light: 100;
  --weight-normal:  300;
  --weight-semibold: 500;
  --weight-bold: 700;
  --weight-big: 900;

  /*========== Font size ==========*/
  --size-extra-small: 0.8rem;
  --size-small: 1rem;
  --size-normal:1.4rem; 
  --size-h5: 1.6rem ;
  --size-h4: 2rem ;
  --size-h3: 2.3rem ;
  --size-h2: 3.3rem ;
  --size-h1: 4.2rem;

  /* Font colors */
  --gray-white: #efefef;
  --dark-gray: #212529 ;
  --light-gray: #8f8f8f;
  --pink: #E3B4B3; 
  --white: #FFFFFF; 
  --green: #0e7a3e;
  --peach: #F4BF96;
  --dark-pink: #ec8785; 

  /* Add header height variable */
  --header-height: 90px; /* Adjust this value based on your header height */
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  letter-spacing: 2px;
}

body {
  font-family: var(--default-font);
  font-size: var(--size-small);
  font-weight: 100;
  background-color: var(--dark-gray);
  color: var(--light-gray);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Mobile Readability Improvements */
@media screen and (max-width: 768px) {
  body {
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.3px;
  }

  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  h1, h2, h3, h4, h5 {
    line-height: 1.3;
    letter-spacing: 0.5px;
  }
}

h1,h2,h3,h4,h5 {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}


button {
  cursor: pointer;
  border: none;
  outline: none;
  font-weight: 100;
}

img {
  max-width: 100%;
  height: auto;
}

div{
  padding: 0;
  margin: 0;
}





/* NAVBAR */
.custom-navbar {
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: var(--white);
  padding: 1rem 0;
  height: var(--header-height);
  top: 0;
  left: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Transparent navbar only on home page */
.home-page .custom-navbar {
  background-color: transparent;
  box-shadow: none;
}

.home-page .navbar-brand {
  color: var(--white) !important;
}

.home-page .nav-item a {
  color: var(--white);
}

.home-page .nav-link {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.home-page .nav-item .btn {
  color: var(--white);
  border: 0.5px solid var(--white);
}

/* Scrolled state for home page */
.home-page .custom-navbar.scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.home-page .scrolled .navbar-brand {
  color: var(--dark-gray) !important;
}

.home-page .scrolled .nav-item a {
  color: var(--dark-gray);
}

.home-page .scrolled .nav-item .btn {
  color: var(--dark-gray);
  border: 0.5px solid var(--dark-gray);
}

/* Default state for other pages */
.navbar-brand {
  color: var(--dark-gray) !important;
}




.nav-logo{
  height: 5rem;
  transition: all 0.3s ease;
}

.scrolled .nav-logo {
  height: 4rem;
}

.nav-tagline{
  font-size: var(--size-extra-small);
  transition: all 0.3s ease;
}

.navbar-brand{
  font-size: var(--size-normal);
  font-weight: 700;
  transition: all 0.3s ease;
}

.scrolled .navbar-brand {
  color: var(--dark-gray) !important;
}

.nav-item{
  margin: 0.3rem;
}

.nav-item a{
  text-align: center;
  font-size: var(--size-small);
  font-weight: 600;
  color: var(--dark-gray);
  transition: all 0.3s ease;
}

.scrolled .nav-item a {
  color: var(--dark-gray);
}

.nav-link{
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.scrolled .nav-link {
  border-right: 1px solid var(--pink);
}

.nav-link:last-of-type{
  border-right: none;
}

.nav-item a:hover{
  color: var(--pink);
}

.nav-item .btn{
  color: var(--dark-gray);
  font-size: var(--size-small);
  border-radius: 5px;
  border: 0.5px solid var(--dark-gray);
  transition: all 0.3s ease;
}


.nav-item .btn:hover{
  color: var(--dark-gray);
  background-color: var(--pink);
  border: 0.5px solid var(--dark-gray);
}

.scrolled .nav-item .btn:hover {
  color: var(--dark-gray);
  background-color: var(--pink);
}

.dropdown-menu {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border: none;
}

.scrolled .dropdown-menu {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  color: var(--white) !important;
}

.scrolled .dropdown-item {
  color: var(--dark-gray) !important; 
}

.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);

}

.scrolled .dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.nav_bar_cont{
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dropdown .dropdown-menu {
  display: none;
}
.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
  display: block;
  margin-left: 0.125em;
}

.pink{
  color: var(--pink);
}

/* coming soom */
.coming-soon-row{
  min-height: 90vh;
}
.coming-soon-col{
  text-align: center;
  font-size: var(--size-h5);
}
.coming-soon{
  font-size: var(--size-h2);
}



/* HOME PAGE */
.home-icons{
  z-index: -10;
  opacity: 0.1;
  position: absolute;
  right: -5%;
  top:30%;
  width: 500px;
  height: 500px;
  z-index: 6;
}
.recycle-home-icon, .circle-home-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.recycle-home-icon{
  width: 80%;
}
.circle-home-icon{
  border: 5px dashed var(--white); /* Adjust color and thickness */
  border-radius: 50%; 
  width: 130%;
  height: 130%;
  animation: rotate 100s linear infinite; 
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


.hor-rule{
  width: 25%;
  height: 4px;
  background-color: var(--white);
  margin: 1rem 0;
}
.home-row{
  min-height: 90vh;
  background-color: var(--dark-gray);
  color: var(--white);
}
.home-brand-name{
  font-size: var(--size-h1);
  font-weight: 800;
}
.home-tagline{
  font-size: var(--size-h3);
  font-weight: 100;
}
.home-description{
  margin-top: 1.5rem;
  font-size: var(--size-normal);
  color: var(--gray-white);
  font-weight: 100;
  text-align: justify;
}

.learn-more{
  margin-top: 2rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
}
.home-learn-more-btn, .home-contact-btn{
  white-space: nowrap;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 100;
  font-size: var(--size-normal);
}
.home-learn-more-btn{
  background-color: var(--pink);
  color: var(--dark-gray);
  margin-right: 15px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
.home-contact-btn{
  color: var(--white);
  border: 1px solid var(--white)
}
.home-contact-btn:hover{
  background-color: var(--white);
  color: var(--dark-gray);
  border: 1px solid var(--white)
}
.home-learn-more-btn:hover{
  color: var(--dark-gray);
  background-color: var(--dark-pink);
}
.scroll-down{
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  top: 50px;
}
.scroll-span{
  color: var(--white) !important;
  text-decoration: none;
}
.scroll-span:hover{
  color: var(--pink) !important;
}
.home-down-arrow{
  position: relative;
  bottom: 10px;
  font-size: var(--size-h2);
}


.image-ignot{
  position: absolute;
  left: -30%;
  opacity: 0.1;
  max-height: 500px;
}
.aim{
  background-color: var(--white);
  font-size: var(--size-normal);
  padding-top: 2rem;
  text-align: center;
  min-height: 500px;
}
.aim-heading{
  font-size: var(--size-h4);
}

.icon-aim{
  background: rgb(227,180,179);
  background: linear-gradient(155deg, rgba(227,180,179,1) 0%, rgba(236,135,133,1) 100%);
}


/* SERVICES */
.services-row {
    background-color: var(--dark-gray);
    padding: 6rem 0;
    color: var(--white);
    position: relative;
    z-index: 1;
}

/* Add padding to the services container */
.services-container {
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.service-content {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2.5rem;
    height: 100%;
    transition: transform 0.3s ease;
    margin: 1rem 0; /* Add vertical margin */
}

/* Adjust the column gap */
.row.services-grid {
    --bs-gutter-x: 2rem; /* Increase horizontal gap between cards */
    --bs-gutter-y: 2rem; /* Increase vertical gap between cards */
}

.services-heading {
    font-size: var(--size-h3);
    text-align: center;
    font-weight: var(--weight-bold);
    letter-spacing: 3px;
}

.services-hr {
    width: 60px;
    height: 3px;
    background-color: var(--pink);
    margin: 1.5rem auto 3rem;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: var(--size-normal);
    color: var(--gray-white);
    line-height: 1.8;
    padding: 0 1rem;
}

.service-content:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.05);
}

.service-icon {
    color: var(--pink);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-content h3 {
    font-size: var(--size-h5);
    margin-bottom: 1rem;
    font-weight: var(--weight-semibold);
}

.service-line {
    width: 40px;
    height: 2px;
    background-color: var(--pink);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.service-content p {
    color: var(--gray-white);
    font-size: var(--size-small);
    line-height: 1.8;
    margin: 0;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .services-row {
        padding: 1rem 0 !important;
    }

    .service-content {
        padding: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .services-row {
        padding: 4rem 0;
    }

    .services-heading {
        font-size: var(--size-h4);
        margin-bottom: 1.5rem;
    }

    .services-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        line-height: 1.9;
        padding: 0 1rem;
    }

    .service-content {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .service-content h3 {
        font-size: var(--size-normal);
        margin-bottom: 1.25rem;
    }

    .service-content p {
        font-size: 1rem;
        line-height: 1.8;
    }
}

/* FOOTER */

.footer{
  padding: 2rem 0;
}

.footer-contact {
  padding: 2rem 0;
  color: var(--gray-white);
}

.footer-divider {
  width: 1px;
  background-color: var(--gray-white);
  height: 100px;
  margin: 0 1rem;
}

.footer-copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--size-extra-small) !important;
}

.contact-footer-heading h5 {
  font-size: var(--size-h5);
  margin-bottom: 0;
}

.footer-address-col,
.footer-contact-info {
  font-size: var(--size-small);
  line-height: 1.6;
}
.footer-contact-info a{
  color: var(--gray-white);
  font-style: underline !important;
}
.footer-contact-info a:hover{
  color: var(--pink);
}

@media screen and (max-width: 768px) {
  .footer-address-col {
    margin: 2rem 0;
    font-size: 0.95rem;
    padding: 0 1.5rem;
    line-height: 1.8;
  }
  
  .footer-divider {
    width: 90%;
    height: 1px;
    margin: 2rem auto;
  }

  .contact-footer-heading {
    margin: 1.5rem 0;
    padding: 0 1.5rem;
  }

  .contact-footer-heading h5 {
    font-size: var(--size-normal);
    margin-bottom: 1rem;
  }

  .footer-contact-info {
    margin: 1.5rem 0;
    font-size: 0.95rem;
    padding: 0 1.5rem;
    line-height: 1.8;
  }
  .footer-copyright{
    font-size: 0.85rem !important;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
    line-height: 1.6;
  }
}

@media screen and (min-width: 769px) {
  .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
  }
  .dropend .dropdown-toggle {
    margin-left: 0.5em;
  }

}

@media screen and (max-width: 1100px) {
  .home-icons{
    width: 300px;
    height: 300px;
    top:40%;
  }
  .home-row{
    padding: 1rem;
    min-height: 85vh;
  }
  .home-brand-name{
    margin-top: 2rem;
    font-size: var(--size-h3);
  }
  .home-tagline{
    font-size: var(--size-h5);
  }
  .learn-more{
    margin-top: 4rem;
  }
  .home-description{
    font-size: 1rem;
  }
}

@media screen and (max-width: 800px) {
  .home-icons{
    display: none;
  }
  .nav_bar_cont{
    width: 90%;
  }
}

@media screen and (max-width: 769px) {
  .nav_bar_cont{
    width: 95%;
  }
  .nav-item .btn{
    width: 100%;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    border: 0.5px solid var(--pink);
  }
}





/* ABOUT US PAGE - Minimal Design */
.about-row {
    padding-top: calc(var(--header-height));
    padding-bottom: 4rem;
}

.about-heading {
    color: var(--white);
    font-size: var(--size-h3);
    font-weight: var(--weight-bold);
    text-align: center;
    margin-bottom: 3rem;
}

.about-content-wrapper {
    position: relative;
    margin: 4rem 0;
    margin-bottom: 6rem;
}

.about-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
}

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

.about-overlay-box {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-40%);
    transform: translateX(-10%);
    background-color: var(--pink);
    padding: 2rem;
    width: 45%;
    color: var(--dark-gray);
    z-index: 2;
    border-radius: 5px;
}

.about-overlay-box h2 {
    font-size: var(--size-h5);
    font-weight: var(--weight-bold);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.about-box-line {
    width: 50px;
    height: 3px;
    background-color: var(--dark-gray);
    margin-bottom: 2rem;
}

.about-overlay-box p {
    font-size: var(--size-normal);
    font-weight: var(--weight-normal);
    line-height: 1.6;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .about-image-container {
        height: auto;
        margin-bottom: 60px;
    }
    
    .about-main-image {
        width: 100%;
        height: 300px;
    }
    
    .about-overlay-box {
        position: relative;
        width: 90%;
        top: -40px;
        transform: none;
        margin: 0 auto;
        left: 0;
        right: 0;
        padding: 2rem;
    }

    .about-content-wrapper {
        margin: 3rem auto;
        width: 95%;
        padding: 0 1rem;
    }
    
    .about-heading {
        text-align: center;
        margin-bottom: 2.5rem;
    }
}

@media screen and (max-width: 576px) {
    .about-overlay-box {
        padding: 2rem;
    }
}

/* Updated About Text Section Styles */
.about-text-section {
    color: var(--white);
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.about-paragraph {
    position: relative;
    margin-bottom: 3rem;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 4rem;  /* Space for icon */
    transition: transform 0.3s ease;
    text-align: justify;
}

.about-paragraph:hover {
    transform: translateX(10px);
}

.about-icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    color: var(--pink);
    opacity: 0.8;
}

.about-paragraph p {
    font-size: var(--size-small);  /* Reduced text size */
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: var(--weight-light);
    color: var(--gray-white);
}

/* Add subtle line between paragraphs */
.about-paragraph:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 4rem;
    width: 30%;
    height: 1px;
    background: linear-gradient(to right, var(--pink), transparent);
    opacity: 0.3;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .about-text-section {
        padding: 0 1rem;
    }
    
    .about-paragraph {
        max-width: 95%;
        padding-left: 3.5rem;
    }

    .about-icon {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .about-text-section {
        margin-bottom: 3rem;
        padding: 0 1.5rem;
    }
    
    .about-paragraph {
        max-width: 100%;
        padding-left: 3rem;
        margin-bottom: 2.5rem;
    }
    
    .about-paragraph p {
        font-size: 1rem;
        line-height: 1.9;
        letter-spacing: 0.5px;
    }

    .about-icon {
        font-size: 1.8rem;
    }

    .about-paragraph:not(:last-child)::after {
        left: 3rem;
        width: 50%;
    }
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .navbar-brand {
    font-size: 1.2rem; /* Reduce brand text size on mobile */
  }
  
  .nav-logo {
    height: 3.5rem; /* Slightly reduce logo size if needed */
  }

  .home-learn-more-btn, 
  .home-contact-btn {
    padding: 8px 20px; /* Slightly reduce padding on mobile */
    font-size: var(--size-small);
  }
}

/* HOME BUTTONS */
.learn-more {
  margin-top: 2rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
}

.home-learn-more-btn, 
.home-contact-btn {
  white-space: nowrap;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 100;
  font-size: var(--size-normal);
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .learn-more {
    flex-direction: row;
    width: 90%;
    margin: 3rem auto;
    gap: 1.2rem;
    justify-content: center;
  }

  .home-learn-more-btn, 
  .home-contact-btn {
    flex: 0 1 auto;
    min-width: 150px;
    text-align: center;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .home-description {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-top: 2rem;
    padding: 0 1rem;
  }
}

/* AIM SECTION */
.aim {
    background-color: var(--dark-gray);
    padding: 4rem 0;
    color: var(--white);
}

.aim-content-wrapper {
    position: relative;
    margin: 2rem auto;
    max-width: 1200px;
}

.aim-image-container {
    position: relative;
    width: 100%;
    height: 350px;
}

.aim-main-image {
    position: relative;
    width: 60%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.aim-overlay-box {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--pink);
    padding: 2.5rem;
    width: 45%;
    color: var(--dark-gray);
    z-index: 2;
    border-radius: 5px;
}

.aim-overlay-box h2 {
    font-size: var(--size-h4);
    font-weight: var(--weight-bold);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.aim-box-line {
    width: 40px;
    height: 3px;
    background-color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.aim-overlay-box p {
    font-size: var(--size-normal);
    font-weight: var(--weight-normal);
    line-height: 1.6;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .aim-image-container {
        height: 300px;
    }
    
    .aim-main-image {
        width: 65%;
    }
    
    .aim-overlay-box {
        width: 50%;
        padding: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .aim-image-container {
        height: 250px;
    }
    
    .aim-main-image {
        width: 100%;
    }
    
    .aim-overlay-box {
        position: relative;
        width: 95%;
        top: -25px;
        transform: none;
        margin: 0 auto;
        padding: 1.5rem;
    }

    .aim-overlay-box h2 {
        font-size: var(--size-normal);
        margin-bottom: 1rem;
    }

    .aim-box-line {
        margin-bottom: 1rem;
    }

    .aim-overlay-box p {
        font-size: var(--size-small);
    }

    .aim-main-image {
        width: 100%;
        height: 250px;
    }
}

/* PROCESSING CAPABILITIES SECTION */
.processing-row {
    background-color: var(--dark-gray);
    padding: 2rem 0;
    color: var(--white);
}

.processing-heading {
    font-size: var(--size-h3);
    text-align: center;
    font-weight: var(--weight-bold);
    letter-spacing: 3px;
    color: var(--white);
}

.processing-hr {
    width: 60px;
    height: 3px;
    background-color: var(--pink);
    margin: 1.5rem auto 3rem;
}

.processing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: var(--size-normal);
    color: var(--light-gray);
    line-height: 1.8;
    padding: 0 1rem;
}

.processing-container {
    padding: 0 2rem;
}

.processing-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.processing-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.processing-gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.processing-image-item:hover .processing-gallery-image {
    transform: scale(1.05);
}


/* Media Queries */
@media screen and (max-width: 992px) {
    .processing-row {
        padding: 4rem 0;
    }
    
    .processing-gallery {
        gap: 1.5rem;
    }
    
    .processing-gallery-image {
        height: 250px;
    }
}

@media screen and (max-width: 768px) {
    .processing-row {
        padding: 3rem 0;
    }
    
    .processing-container {
        padding: 0 1rem;
    }
    
    .processing-intro {
        font-size: var(--size-small);
        margin-bottom: 2rem;
    }
    
    .processing-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .processing-gallery-image {
        height: 250px;
    }
}

/* INFRASTRUCTURE PAGE */
.infrastructure-page-row {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 4rem;
}

.infrastructure-page-heading {
    color: var(--white);
    font-size: var(--size-h3);
    font-weight: var(--weight-bold);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 3px;
}

.infrastructure-page-text-section {
    color: var(--white);
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.infrastructure-page-paragraph {
    position: relative;
    margin-bottom: 3rem;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 4rem;
    transition: transform 0.3s ease;
    text-align: justify;
}

.infrastructure-page-paragraph:hover {
    transform: translateX(10px);
}

.infrastructure-page-icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    color: var(--pink);
    opacity: 0.8;
}

.infrastructure-page-paragraph p {
    font-size: var(--size-small);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: var(--weight-light);
    color: var(--gray-white);
}

/* Infrastructure Flow Design */
.infrastructure-flow {
    margin: 4rem 0;
    padding: 0 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.flow-step {
    margin-bottom: 5rem;
    position: relative;
}

.flow-step:last-child {
    margin-bottom: 0;
}

.flow-step-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.flow-step-number {
    font-size: var(--size-h2);
    font-weight: var(--weight-bold);
    color: var(--pink);
    min-width: 60px;
    line-height: 1;
    text-align: center;
    /* background: linear-gradient(135deg, rgba(227, 180, 179, 0.1), rgba(236, 135, 133, 0.1)); */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--pink);
    flex-shrink: 0;
}

.flow-step-title-wrapper {
    flex: 1;
    padding-top: 1rem;
}

.flow-step-title {
    font-size: var(--size-h4);
    font-weight: var(--weight-bold);
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.flow-step-description {
    font-size: var(--size-normal);
    line-height: 1.3;
    color: var(--gray-white);
    text-align: justify;
}

.flow-step-images {
    margin: 2rem 0;
}

.flow-image-main {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.flow-image-main:hover {
    transform: translateY(-5px);
}

.flow-main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flow-image-main:hover .flow-main-image {
    transform: scale(1.03);
}

.flow-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Handle single image in grid - center it */
.flow-image-grid .flow-image-item:only-child {
    max-width: 600px;
    margin: 0 auto;
    grid-column: 1 / -1;
}

.flow-image-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.flow-grid-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flow-image-item:hover .flow-grid-image {
    transform: scale(1.05);
}

.flow-image-full {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.flow-image-full:hover {
    transform: translateY(-5px);
}

.flow-full-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flow-image-full:hover .flow-full-image {
    transform: scale(1.03);
}

.flow-arrow {
    text-align: center;
    margin: 3rem 0;
    color: var(--pink);
    font-size: 3rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .services-container {
        padding: 0 1.5rem;
    }
    
    .service-content {
        margin: 1rem 0;
        padding: 2rem 1.5rem;
    }
    
    .row.services-grid {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }

    .services-heading {
        margin-bottom: 1.5rem;
    }

    .services-intro {
        margin-bottom: 3rem;
        padding: 0 1rem;
        font-size: 1.1rem;
        line-height: 1.9;
    }

    .service-content p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .infrastructure-page-row {
        padding-top: calc(var(--header-height) + 2rem);
        padding-bottom: 3rem;
    }

    .infrastructure-page-heading {
        font-size: var(--size-h4);
        margin-bottom: 2.5rem;
    }

    .infrastructure-page-text-section {
        padding: 0 1.5rem;
        margin-bottom: 3.5rem;
    }

    .infrastructure-page-paragraph {
        max-width: 100%;
        padding-left: 3rem;
        margin-bottom: 2rem;
    }

    .infrastructure-page-icon {
        font-size: 2rem;
    }

    .infrastructure-page-paragraph p {
        font-size: 1rem;
        line-height: 1.9;
        letter-spacing: 0.5px;
    }

    .infrastructure-sections {
        margin: 3rem 0;
        padding: 0 1rem;
    }

    .infrastructure-flow {
        padding: 0 1.5rem;
        margin: 4rem 0;
    }

    .flow-step {
        margin-bottom: 5rem;
    }

    .flow-step-header {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .flow-step-number {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: var(--size-h3);
    }

    .flow-step-title-wrapper {
        padding-top: 0;
    }

    .flow-step-title {
        font-size: var(--size-h5);
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .flow-step-description {
        font-size: 1.1rem;
        line-height: 1.9;
        letter-spacing: 0.5px;
    }

    .flow-main-image {
        height: 300px;
    }

    .flow-image-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .flow-grid-image {
        height: 200px;
    }

    .flow-full-image {
        height: 300px;
    }

    .flow-arrow {
        font-size: 2rem;
        margin: 2rem 0;
    }
}

/* Tablet Media Query for Infrastructure Flow */
@media screen and (min-width: 769px) and (max-width: 992px) {
    .infrastructure-flow {
        padding: 0 1.5rem;
    }

    .flow-step-number {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: var(--size-h2);
    }

    .flow-main-image {
        height: 380px;
    }

    .flow-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .flow-image-grid .flow-image-item:only-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .flow-grid-image {
        height: 220px;
    }

    .flow-full-image {
        height: 400px;
    }
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .about-content-wrapper {
        margin-bottom: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .about-content-wrapper {
        margin-bottom: 3rem;
    }
    
    .about-image-container {
        margin-bottom: 80px;
    }
    .about-row {
      padding-bottom: 2rem;
      margin-bottom: 2rem;
      padding-top: calc(var(--header-height) + 2rem);
  }
}

/* ETHICS SECTION */
.ethics-row {
    background-color: var(--dark-gray);
    padding: 6rem 0;
    color: var(--white);
}

.ethics-heading {
    font-size: var(--size-h3);
    text-align: center;
    font-weight: var(--weight-bold);
    letter-spacing: 3px;
}

.ethics-hr {
    width: 60px;
    height: 3px;
    background-color: var(--pink);
    margin: 1rem auto 2rem;
}

.ethics-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: var(--size-normal);
    color: var(--gray-white);
    line-height: 1.8;
    padding: 0 1rem;
}

.ethics-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ethics-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ethics-item {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.ethics-arrow {
    color: var(--pink);
    font-size: var(--size-small);
    opacity: 0.8;
}

.ethics-text {
    font-size: var(--size-small);
    color: var(--gray-white);
    line-height: 1.5;
    text-align: justify;
}

.ethics-text span {
    color: var(--white);
    font-weight: var(--weight-semibold);
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .ethics-row {
        padding: 4rem 0;
    }

    .ethics-container {
        padding: 0 1.5rem;
    }

    .ethics-heading {
        margin-bottom: 1.5rem;
    }

    .ethics-intro {
        margin-bottom: 3rem;
        font-size: 1.1rem;
        line-height: 1.9;
    }

    .ethics-list {
        gap: 1rem;
    }

    .ethics-item {
        gap: 1rem;
    }

    .ethics-arrow {
        font-size: 1rem;
    }

    .ethics-text {
        font-size: 1rem;
        line-height: 1.9;
        letter-spacing: 0.5px;
    }
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .ethics-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        line-height: 1.9;
        padding: 0 1rem;
    }
}

/* DIRECTOR'S MESSAGE SECTION */
.director-row {
    background-color: var(--white);
    padding: 6rem 0;
    color: var(--dark-gray);
}

.director-heading {
    font-size: var(--size-h3);
    text-align: center;
    font-weight: var(--weight-bold);
    letter-spacing: 3px;
    color: var(--dark-gray);
}

.director-hr {
    width: 60px;
    height: 3px;
    background-color: var(--pink);
    margin: 1.5rem auto 4rem;
}

.director-container {
    padding: 0 2rem;
}

.director-image-container {
    text-align: center;
    margin-bottom: 2rem;
}

.director-image {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.director-name {
    font-size: var(--size-h5);
    font-weight: var(--weight-semibold);
    color: var(--dark-gray);
    margin-top: 1.5rem;
}

.director-message {
    font-size: var(--size-small);
    line-height: 1.8;
    color: var(--gray);
}

.director-message p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.director-message p:last-child {
    margin-bottom: 0;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .director-row {
        padding: 4rem 0;
    }

    .director-image {
        width: 250px;
        height: 320px;
    }
}

@media screen and (max-width: 768px) {
    .director-row {
        padding: 4rem 0;
    }

    .director-container {
        padding: 0 1.5rem;
    }

    .director-heading {
        margin-bottom: 2rem;
    }

    .director-image {
        width: 200px;
        height: 250px;
    }

    .director-message {
        font-size: 1rem;
        line-height: 1.9;
        text-align: justify;
        letter-spacing: 0.5px;
    }

    .director-name {
        font-size: var(--size-normal);
        margin-top: 2rem;
    }
}

/* MISSION AND VISION SECTION - Centered */
.mission-row {
    background-color: var(--dark-gray);
    padding: 4rem 0;
    color: var(--white);
    margin-top: 4rem;
}

.mission-container {
    position: relative;
}

.mission-heading {
    font-size: var(--size-h3);
    text-align: center;
    font-weight: var(--weight-bold);
    letter-spacing: 3px;
    color: var(--white);
}

.mission-hr {
    width: 60px;
    height: 3px;
    background-color: var(--pink);
    margin: 1rem auto 3rem;
}

.mission-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-text-container {
    padding: 0 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.mission-text {
    font-size: var(--size-small);
    line-height: 1.6;
    color: var(--gray-white);
}

.mission-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.mission-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.mission-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mission-highlight-item i {
    color: var(--pink);
    font-size: 1.2rem;
}

.mission-highlight-item span {
    font-weight: var(--weight-normal);
    font-size: var(--size-small);
    color: var(--white);
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .mission-row {
        padding: 3rem 0;
    }
    
    .mission-text {
        font-size: var(--size-small);
    }
    
    .mission-text-container {
        padding: 0 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .mission-row {
        padding: 4rem 0;
    }
    
    .mission-heading {
        margin-bottom: 1.5rem;
    }
    
    .mission-text-container {
        padding: 0 1.5rem;
    }
    
    .mission-text {
        font-size: 1rem;
        line-height: 1.9;
        letter-spacing: 0.5px;
    }
    
    .mission-text p {
        margin-bottom: 2rem;
    }
    
    .mission-highlights {
        grid-template-columns: 1fr;
        margin: 2rem 0;
        gap: 1rem;
    }
    
    .mission-highlight-item i {
        font-size: 1.2rem;
    }
    
    .mission-highlight-item span {
        font-size: 1rem;
    }
}

/* HOME CAROUSEL */
#homeCarousel {
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 0; /* Remove margin-top */
}

.carousel-item {
  height: 100vh;
  position: relative;
  background-color: var(--dark-gray);
}

.carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.7);
  position: absolute;
  top: 0;
  left: 0;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
  z-index: 2;
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 3;
  width: 90%;
  max-width: 1200px;
}

/* Ensure content after carousel starts after viewport */
#home-about {
  margin-top: 2rem;
}

.carousel-title {
  font-size: var(--size-h1);
  font-weight: var(--weight-bold);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.carousel-subtitle {
  font-size: var(--size-h4);
  font-weight: var(--weight-light);
  margin-bottom: 2rem;
}

.carousel-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.carousel-btn {
  padding: 12px 30px;
  font-size: var(--size-normal);
  font-weight: var(--weight-normal);
  border-radius: 5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.carousel-btn.primary {
  background-color: var(--pink);
  color: var(--white);
  border: none;
}

.carousel-btn.secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.carousel-btn.primary:hover {
  background-color: var(--dark-pink);
  transform: translateY(-2px);
}

.carousel-btn.secondary:hover {
  background-color: var(--white);
  color: var(--dark-gray);
  transform: translateY(-2px);
}

.carousel-indicators {
  z-index: 4;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--white);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  opacity: 1;
  transform: scale(1.2);
}

@media screen and (max-width: 768px) {
  .carousel-title {
    font-size: var(--size-h3);
    margin-bottom: 1.5rem;
  }
  
  .carousel-subtitle {
    font-size: var(--size-normal);
    margin-bottom: 2.5rem;
    line-height: 1.6;
  }
  
  .carousel-buttons {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    margin-top: 2.5rem;
  }
  
  .carousel-btn {
    width: 220px;
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Add styles for mobile navigation */
@media screen and (max-width: 991px) {
  .custom-navbar {
    background-color: rgba(0, 0, 0, 0.9);
  }

  .navbar-brand .col-auto:last-child {
    display: none; /* Hide company name and tagline */
  }

  .nav-logo {
    height: 3.5rem;
  }

  .navbar-toggler {
    padding: 0.25rem 0.5rem;
    margin-left: 0.5rem;
  }

  .navbar-collapse {
    background-color: inherit;
    padding: 1rem;
    margin-top: 0.5rem;
  }

  .navbar-toggler {
    border-color: var(--white);
    padding: 0.5rem;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .scrolled .navbar-toggler {
    border-color: var(--dark-gray);
  }

  .scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(33, 37, 41, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .scrolled .nav-item a {
    color: var(--white) !important;
  }

  .nav-item {
    margin: 0.5rem 0;
  }

  .nav-link {
    border-right: none !important;
    padding: 0.5rem 0;
  }

  .dropdown-menu {
    background-color: transparent !important;
    border: none;
    padding: 0;
    margin: 0;
  }

  .dropdown-item {
    padding: 0.5rem 1rem;
  }

  .nav-item .btn {
    width: 100%;
    text-align: center;
    padding: 0.5rem;
    margin-top: 0.5rem;
  }

  /* Ensure the expanded menu is scrollable if too tall */
  .navbar-collapse {
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  /* Add backdrop when menu is open */
  .navbar-collapse.show {
    backdrop-filter: blur(10px);
  }
}

/* Update container spacing for about page */
.container {
    padding-top: calc(var(--header-height) + 2rem);
}

/* Update other section spacings */
.mission-row,
.services-row,
.ethics-row,
.director-row {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Media Queries for About Section */
@media screen and (max-width: 768px) {
    .about-overlay-box {
        position: relative;
        width: 95%;
        top: -25px;
        transform: none;
        margin: 0 auto;
        padding: 2rem;
        left: 0;
        right: 0;
    }

    .about-overlay-box h2 {
        font-size: var(--size-normal);
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .about-box-line {
        margin-bottom: 1.5rem;
    }

    .about-overlay-box p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .about-main-image {
        width: 100%;
        height: 250px;
    }
}

/* Media Queries for Aim Section */
@media screen and (max-width: 768px) {
    .aim-overlay-box {
        position: relative;
        width: 95%;
        top: -25px;
        transform: none;
        margin: 0 auto;
        padding: 2rem;
    }

    .aim-overlay-box h2 {
        font-size: var(--size-normal);
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .aim-box-line {
        margin-bottom: 1.5rem;
    }

    .aim-overlay-box p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .aim-main-image {
        width: 100%;
        height: 250px;
    }
}

/* Even smaller screens */
@media screen and (max-width: 576px) {
    .about-overlay-box,
    .aim-overlay-box {
        width: 92%;
        padding: 1.75rem;
    }

    .about-overlay-box h2,
    .aim-overlay-box h2 {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }

    .about-overlay-box p,
    .aim-overlay-box p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .about-main-image,
    .aim-main-image {
        height: 220px;
    }

    .about-box-line,
    .aim-box-line {
        margin-bottom: 1.25rem;
    }
}