:root {
  /* Fonts */
  --btn-font: bold 14px 'Raleway', 'Open Sans', sans-serif;

  /* Sizes */
  --btn-width: 180px;
  --btn-max-width: 300px;
  --btn-height: 40px;
  --btn-radius: 50px;

  /* Colors */
  --green: #00a86b;
  --green-hover: hsl(161, 80%, 48%);
  --blue: #2b88d9;
  --white: #ffffff;

  /* Effects */
  --transition: all 0.5s ease;
  --shadow-default: rgb(0 0 0 / 5%) 0 0 8px;
  --shadow-hover: 0 6px 15px rgba(0, 0, 0, 0.2);
  --shadow-green: rgb(0, 168, 107) 0px 7px 29px 0px;

  /* Text */
  --letter-spacing: 1.5px;
  --letter-spacing-hover: 3px;
}



/* ============================
   GLOBAL RESET / MOBILE-FIRST
=============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.action-buttons a {
  text-decoration: none;
}

.action-buttons button {
  font: var(--btn-font);
  width: var(--btn-width);
  max-width: var(--btn-max-width);
  height: var(--btn-height);
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  text-align: center;
  border-radius: var(--btn-radius);
  transition: var(--transition);
  box-shadow: var(--shadow-default);
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
}

.action-buttons button:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

/* Green button */
.action-buttons .green {
  background: var(--green);
  color: var(--white);
}

.action-buttons .green:hover {
  letter-spacing: var(--letter-spacing-hover);
  background-color: var(--green-hover);
  box-shadow: var(--shadow-green);
}

/* White button */
.action-buttons .white {
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
}




/* ============================
   NAVBAR BASE / MOBILE-FIRST
=============================== */
.navbar {
  display: flex;
  align-items: center;
  padding: 10px 0px;
  background: #04326b;
  color: #f4f4f4;
 height: 70px;  
  position: fixed;     
  top: 0;            
  width: 100%;         
  z-index: 1000;       

   
   
}
.navbar .logo {
  margin-left: 10px; 
} 

.navbar .logo img {
  height: 40px;
}


/* Hamburger */
.menu-toggle {
  position: fixed;
  top: 20px;             
  right: 20px;           
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;    
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #f4f4f4;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle:hover span {
  background: #49D629; 
}



.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0; 
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

#nav-menu {
  position: fixed;       
  top: 0;
  left: -100%;          
  width: 100%;          
  height: 100vh;        
  background: black;
  padding: 60px 20px;    
  box-shadow: 2px 0 5px rgba(0,0,0,0.3);
  transition: left 0.3s ease; 
  z-index: 1000;         
}



#nav-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
    padding-top: 50px; 
}

#nav-menu ul li a {
   font-family: 'Montserrat', 'Open Sans', sans-serif; 
  text-decoration: none;
  color: #f4f4f4;
  font-size: 20px;
   line-height: 1.5; 
    display: inline-block;
     transition: all 0.3s ease; 
}

#nav-menu ul li a:hover {
  color: #49D629;
  transform:scale(1.1);
  
}


#nav-menu.active {
  left: 0;
}



/* ============================
   DESKTOP / LARGE SCREENS
=============================== */
@media (min-width: 768px) {

 
  .navbar {
    padding: 15px 40px;
    justify-content: space-between;
     height: 90px;  
  }

 
  .navbar .logo img {
    height: 50px;
     margin-left: 100px;
  }

  
  .menu-toggle {
    display: none;
  }

 
  #nav-menu {
    position: static;    
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    left: 0;
      margin-right: 100px;
  }


  #nav-menu ul {
    flex-direction: row;
    gap: 30px;
    padding-top: 0;
    align-items: center;
  }

  #nav-menu ul li a {
    font-size: 18px;

  }

    #nav-menu ul li a.active {
  color: #00a86b;
  font-weight: 600;
}
}

.hero {
  position: relative; 
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: center;    
  text-align: center;
  margin-top: 70px;
  min-height: calc(100vh - 70px);
  padding: 40px 20px;
  background-image: url('../images/hero-bg1.png');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat; 
  background-attachment: fixed;
  gap: 20px;
  overflow: hidden;
}

/* Overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}


.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #f4f4f4;
  font-size: 35px;
  margin-bottom: 10px;
    font-family: 'Montserrat', 'Open Sans', sans-serif; 
}

.hero h3 {
  color: #f4f4f4;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: 'Raleway', 'Open Sans', sans-serif; 
}




@media (min-width: 768px) {


  .hero {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 80px 120px;
    gap: 40px;
    background-size: cover;
  }


  .hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
  }


  .hero h3 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .action-buttons {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    width: auto;
  }

  
  .action-buttons button {
    font-size: 16px;
    width: 200px;
    height: 50px;
    border-radius: 25px;
  }
}

@media (min-width: 1280px) {

  .hero {
    padding: 100px 160px;
    gap: 50px;
  }

  .hero h1 {
    font-size: 68px;
  }

  .hero h3 {
    font-size: 36px;
  }

  .action-buttons button {
    width: 220px;
    height: 54px;
  }
}

@media (min-width: 1600px) {

  .hero {
    padding: 120px 220px;
    gap: 60px;
  }

  .hero h1 {
    font-size: 76px;
  }

  .hero h3 {
    font-size: 40px;
  }

  .action-buttons button {
    width: 240px;
    height: 58px;
    font-size: 17px;
  }
}



/* ============================
   SAVE THE WORLD SECTION
=============================== */
.save-the-world {
  background-image: url('../images/leadership-profiles-bg.png');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat; 
  display: flex;
  flex-direction: column; 
  align-items: center;    
  justify-content: center; 
  text-align: center;
  gap: 20px;              
  padding: 40px 20px;
    background-attachment: fixed; 
}

.save-the-world img {
  max-width: 100%;        
  height: auto;
}

  .save-the-world p {
  font-family: 'Open Sans', sans-serif;
    max-width: 600px;        
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    margin: 0 auto;         
  }
.save-the-world .blue {
  color: #04326b; 
  font-weight: bold; 
}
.save-the-world .green {
  color: #338d33; 
  font-weight: bold; 
}

.save-the-world button {
  margin-top: 10px;
  font-family: 'Raleway', 'Open Sans', sans-serif;
  padding: 12px 24px;
  font-size: 14px;
  border: none;
  background: #004aad;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.5s ease;
  box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.save-the-world button:hover {
  transform: scale(1.05);
  letter-spacing: 3px;
  background-color: #0066ff; 
  color: #ffffff;
  box-shadow: rgb(0 102 255 / 40%) 0px 7px 29px 0px;
}



.save-the-world a{
  text-decoration: none;
}

.save-the-world button img {
  width: 16px;  
  height: 16px;
  margin-left: 8px; 
  vertical-align: middle; 
}

@media (min-width: 768px) {
  .save-the-world {
    flex-direction: column;     
    align-items: center;         
    text-align: center;          
    justify-content: center;     
    padding: 60px 20px;           
    gap: 30px;                    
  }

  .save-the-world img {
    max-width: 80%;              
    height: auto;
  }

  .save-the-world p {
    max-width: 700px;             
    font-size: 18px;               
    margin: 0 auto;                
    line-height: 1.8;
  }

  .save-the-world button {
    font-size: 16px;              
    padding: 14px 28px;
  }
}


/* ==============================
   SOLUTIONS PRODUCT CARDS
============================== */
.solutions-product {
  text-align: center;
  padding: 40px 20px;
  background: #f4f4f4;
}

.solutions-product h2 {
  font-family: 'Montserrat', 'Open Sans', sans-serif; 
  font-size: 32px;
  margin-bottom: 30px;
  color: #04326b;
}

/* Container for cards */
.sp-card-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* Each card */
.sp-card {
  background: white;
  border-radius: 40px;
  padding: 20px;
  width: 90%;           
  max-width: 400px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sp-card img {
  max-width: 70%;
  height: auto;
  margin-bottom: 15px;
}

.sp-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #04326b;
  font-family: 'Raleway', 'Open Sans', sans-serif; 
}

.sp-card p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #4a4a4a;
  font-family: 'Open Sans', sans-serif; 
  line-height: 1.6;
}

.sp-card button {
  background: #e0e0e0;
  color: #04326b;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Raleway', 'Open Sans', sans-serif; 
  border-radius: 50px;
  transition: all 0.5s ease;
  box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
  letter-spacing: 1.5px;
text-transform: uppercase;
}

.sp-card button:hover {
   transform: scale(1.05);
  letter-spacing: 3px;
  background-color: #0066ff; 
  color: #ffffff;
  box-shadow: rgb(0 102 255 / 40%) 0px 7px 29px 0px;


}

.sp-card button:focus-visible {
  outline: 2px solid #0066ff;
  outline-offset: 3px;
}



@media (min-width: 768px) {
  .sp-card-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .sp-card {
    width: calc(50% - 20px);
    max-width: 280px;
  }

  .solutions-product h2 {
    font-size: 42px;
    margin-bottom: 35px;
  }
}


@media (min-width: 1280px) {
  .sp-card-container {
    gap: 28px; 
  }

  .sp-card {
    width: calc(50% - 25px);
    max-width: 320px;
    min-height: 380px;
  }

  .solutions-product h2 {
    font-size: 50px;
    margin-bottom: 40px;
  }
}


@media (min-width: 1440px) {
  .sp-card-container {
    gap: 32px; 
  }

  .sp-card {
    width: calc(33.33% - 30px);
    max-width: 360px;
    min-height: 400px;
  }

  .solutions-product h2 {
    font-size: 60px;
    margin-bottom: 50px;
  }
}


.sp-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}









.esg-impact {
  background: #f4f4f4;
  padding: 40px 20px;
  
  
  display: flex;
  flex-direction: column;
  align-items: center; 
}

.esg-impact h2{
  margin-bottom: 25px;
  font-family: 'Montserrat', 'Open Sans', sans-serif; 
  font-size: 32px;
   text-align: center;
   color: #04326b;
}

.esg-container {
  display: flex;
  flex-wrap: wrap;        
  justify-content: center; 
  gap: 20px;
  padding: 10px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
.impact-box {

  width: 45%;             
  min-width: 140px;      
  max-width: 280px;       
  
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.impact-box img {
  width: 100px;           
  height: 100px;          
  object-fit: contain;    
  margin-bottom: 10px;
}

.impact-box h4{
  font-size: 28px;
  margin: 10px 0;
  font-family: 'Raleway', sans-serif;
}
.impact-box p{
   font-size: 16px;
  color: #4a4a4a;
   font-family: 'Open Sans', sans-serif; 
}



.impact-box:nth-of-type(1) h4 {
 color: #00a86b;
}


.impact-box:nth-of-type(2) h4 {
  color: #ffa51f; 
}

.impact-box:nth-of-type(3) h4 {
  color: #2b88d9; 
}

.esg-impact button{
  justify-content: center;
  font: bold 14px 'Raleway', 'Open Sans', sans-serif;
  width: 180px;
  max-width: 300px;
  height: 40px;
  padding: 0 10px;
  border-radius: 20px;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.esg-impact button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.esg-impact .white {
  background: #fff;
  color: #2b88d9;
  border: 2px solid #2b88d9;
}

/* ============================
   TABLET: 2 per row
============================ */
@media (min-width: 768px) {
  .esg-container {
    gap: 25px;
  }

  .impact-box {
    width: calc(50% - 25px); 
    max-width: 280px;
    padding: 25px;
  }

  .impact-box img {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
  }

  .impact-box h4 {
    font-size: 30px;
  }

  .impact-box p {
    font-size: 17px;
  }

  .esg-impact button {
    font-size: 16px;
    width: 200px;                 
    height: 50px;
    border-radius: 25px;
  }
  .esg-impact h2 {
    font-size: 42px;
    margin-bottom: 35px;
  }
}

/* ============================
   DESKTOP: 3 per row
============================ */
@media (min-width: 1280px) {
  .esg-container {
    gap: 30px;
  }

  .impact-box {
    width: calc(33.33% - 30px); 
    max-width: 300px;
    padding: 30px;
  }

  .impact-box img {
    width: 130px;
    height: 130px;
    margin-bottom: 15px;
  }

  .impact-box h4 {
    font-size: 32px;
  }

  .impact-box p {
    font-size: 18px;
  }

  .esg-impact button {
    font-size: 16px;
    width: 200px;                 
    height: 50px;
    border-radius: 25px;
  }
  .esg-impact h2 {
    font-size: 50px;
    margin-bottom: 40px;
  }
}

/* ============================
   EXTRA-LARGE DESKTOP: 4 per row
============================ */
@media (min-width: 1440px) {
  .esg-container {
    gap: 35px;
  }

  .impact-box {
    width: calc(25% - 35px); 
    max-width: 320px;
    padding: 35px;
  }

  .impact-box img {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
  }

  .impact-box h4 {
    font-size: 34px;
  }

  .impact-box p {
    font-size: 18px;
  }

  .esg-impact button {
     font-size: 16px;
    width: 200px;                 
    height: 50px;
    border-radius: 25px;
  }
  .esg-impact h2 {
    font-size: 60px;
    margin-bottom: 50px;
  }
}




.success-story{
  background: #ffffff;
   padding: 40px 20px;
}
.success-story h2{
   margin-bottom: 25px;
  font-family: 'Montserrat', 'Open Sans', sans-serif; 
  font-size: 32px;
   text-align: left;
   color: #04326b;

}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-wrapper video {
  width: 100%;
  display: block;
}


.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
  
  
  display: flex;
  align-items: center; 
  justify-content: flex-start;
  text-align: left;
  padding: 20px;
}

.overlay-content {
  max-width: 600px;
  color: white; 
}

.video-subtext {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: #ffffff;
}

.video-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  color: #ffffff;
}


@media (min-width: 768px) {
  .success-story {
    padding: 60px 40px;
  }

  .success-story h2 {
    font-size: 42px;       
    text-align: left;
    margin-bottom: 35px;
  }

  .video-wrapper {
    max-width: 1000px;     
    border-radius: 20px;
  }

  .video-overlay {
    padding: 40px;           
    justify-content: flex-start;
  }

  .overlay-content {
    max-width: 650px;
  }

  .video-subtext {
    font-size: 40px;       
    letter-spacing: 1.5px;
  }

  .video-description {
    font-size: 20px;       
    line-height: 1.6;
  }
}


@media (min-width: 1280px) {
  .success-story {
    padding: 80px 100px;
  }

  .success-story h2 {
    font-size: 50px;
    margin-bottom: 40px;
  }

  .video-wrapper {
    max-width: 1200px;
    border-radius: 25px;
  }

  .video-overlay {
    padding: 60px;
  }

  .overlay-content {
    max-width: 700px;
  }

  .video-subtext {
    font-size: 50px;
    letter-spacing: 2px;
  }

  .video-description {
    font-size: 25px;
    line-height: 1.8;
  }
}


@media (min-width: 1600px) {
  .success-story {
    padding: 100px 150px;
  }

  .success-story h2 {
    font-size: 60px;
    margin-bottom: 50px;
  }

  .video-wrapper {
    max-width: 1400px;
  }

  .video-overlay {
    padding: 80px;
  }

  .overlay-content {
    max-width: 800px;
  }

  .video-subtext {
    font-size: 60px;
    letter-spacing: 2.5px;
  }

  .video-description {
    font-size: 30px;
    line-height: 2;
  }
}













.news-insight{
  background: #f4f4f4;
  padding: 40px 20px;
}
.news-insight h2{
   margin-bottom: 25px;
  font-family: 'Montserrat', 'Open Sans', sans-serif; 
  font-size: 32px;
   text-align: left;
   color: #04326b;
}

.news-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.innovation,
.partners,
.latest {
  display: flex;
  flex-direction: column;
  flex: 1 1 320px;
  max-width: 380px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.innovation:hover,
.partners:hover,
.latest:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 14px;
  min-height: 56px;
  background: #fff;
  text-align: center;
}

.text h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #4a4a4a;
  font-family: 'Raleway', 'Open Sans', sans-serif;
}

@media (min-width: 768px) {
  .news-insight {
    padding: 60px 40px;
  }

  .news-insight h2 {
    font-size: 42px;
    margin-bottom: 35px;
  }

  .news-container {
    gap: 25px;
  }

  .innovation,
  .partners,
  .latest {
    max-width: 360px;
  }

  .text h4 {
    font-size: 22px;
  }
}

@media (min-width: 1280px) {
  .news-insight {
    padding: 80px 80px;
  }

  .news-insight h2 {
    font-size: 48px;
    margin-bottom: 40px;
  }

  .news-container {
    gap: 30px;
  }

  .innovation,
  .partners,
  .latest {
    max-width: 380px;
  }

  .text h4 {
    font-size: 24px;
  }
}

@media (min-width: 1600px) {
  .news-insight {
    padding: 100px 150px;
  }

  .news-insight h2 {
    font-size: 56px;
    margin-bottom: 50px;
  }

  .news-container {
    gap: 40px;
  }

  .innovation,
  .partners,
  .latest {
    max-width: 400px;
  }

  .text h4 {
    font-size: 26px;
  }
}


.our-partners {
   background-image: url('../images/our-partners.png');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  padding: 40px 20px;
  text-align: center;
}

.our-partners h2 {
  margin-bottom: 25px;
  font-family: 'Montserrat', 'Open Sans', sans-serif; 
  font-size: 32px;
   text-align: center;
   color: #04326b;
}

.partners-slider {
  overflow: hidden;
  width: 100%;
  cursor: grab;
}

.partners-track {
  display: flex;
  gap: 40px;
  animation: scrollPartners 10s linear infinite;
}

.partners-slider:hover .partners-track {
  animation-play-state: paused;
}

.partners-track img {
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.partners-track img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

@keyframes scrollPartners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .our-partners {
    padding: 60px 40px;
  }

  .our-partners h2 {
    font-size: 42px;
    margin-bottom: 35px;
  }

  .partners-track {
    gap: 50px;
  }

  .partners-track img {
    height: 100px;
  }
}

@media (min-width: 1280px) {
  .our-partners {
    padding: 80px 80px;
  }

  .our-partners h2 {
    font-size: 48px;
    margin-bottom: 40px;
  }

  .partners-track {
    gap: 60px;
  }

  .partners-track img {
    height: 120px;
  }
}

@media (min-width: 1600px) {
  .our-partners {
    padding: 100px 150px;
  }

  .our-partners h2 {
    font-size: 56px;
    margin-bottom: 50px;
  }

  .partners-track {
    gap: 70px;
  }

  .partners-track img {
    height: 140px;
  }
}

.footer{
  background-image: url('../images/footer-bg.png');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat; 
   background-attachment: fixed; 
}

.future{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 50px 20px;
  text-align: center;
}

.future h2{
  margin-bottom: 25px;
  font-family: 'Montserrat', 'Open Sans', sans-serif; 
  font-size: 32px;
   text-align: center;
   color: #04326b;
}

.future .together{
   color: rgb(224, 221, 221);
}

.bottom-footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 20px;
  min-height: 150px;
}

.logo-left {
  display: flex;           
  flex-direction: column;  
  justify-content: center;
  align-items: center;
  height: 100%;            
}

.logo-left img {
  height: 100px;  
  width: auto;    
}

.bottom-footer > div:not(.contact-center) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 10px;
}

.contact-center {
  display: flex;
  flex-direction: column; 
  align-items: flex-start;
  gap: 10px;               
}

.contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  margin-left: 10px;
}

.contact-item img {
  height: 40px;
  width: auto;
}

.contact-text p,
.contact-text .sim-highlight {
  font-family: 'Raleway', 'Open Sans', sans-serif;
  font-size: 18px;
}

.contact-text p {
  margin: 0 10px;
  color: #4a4a4a;
}

.contact-text .sim-highlight {
  color: #04326b;
}

.quick-links p{
  margin: 0 10px; 
  font-family: 'Montserrat', 'Open Sans', sans-serif; 
  font-size: 22px;
  color: #04326b;
  font-weight: bold;
}

.quick-links a{
  font-family: 'Raleway', 'Open Sans', sans-serif; 
  font-size: 18px;
  color: #4a4a4a;
  padding: 2px;
  text-decoration: none;
}

footer {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  background: #04326b;
  text-align: center;
  padding: 15px 20px;
  font-size: 14px;
  line-height: 1.5;
  width: 100%;
  box-sizing: border-box;   
}

footer p {
  font-weight: bold;
  margin: 0;
  color: #f4f4f4;
}

@media (min-width: 768px) {
  .future {
    padding: 80px 60px;
    gap: 20px;
  }

  .future h2, .future .together {
    font-size: 36px;
    color: rgb(224, 221, 221);
  }

  .bottom-footer {
    padding: 40px 60px;
    gap: 40px;
    min-height: 180px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .logo-left img {
    height: 120px;
  }

  .bottom-footer > div:not(.contact-center) {
    margin: 0 20px;
  }

  .contact-center {
    gap: 15px;
  }

  .contact-item img {
    height: 50px;
  }

  .contact-text p,
  .contact-text .sim-highlight {
    font-size: 20px;
  }

  .quick-links p {
    font-size: 24px;
  }

  .quick-links a {
    font-size: 20px;
    padding: 4px 2px;
  }

 footer {
    font-size: 16px;
    padding: 20px 60px;
  }
}

@media (min-width: 1280px) {
  .future {
    padding: 100px 80px;
    gap: 25px;
  }

  .future h2, .future .together {
    font-size: 42px;
  }

  .bottom-footer {
    padding: 50px 80px;
    gap: 50px;
    min-height: 200px;
    max-width: 1500px;
    margin: 0 auto;
  }

  .logo-left img {
    height: 140px;
  }

  .contact-item img {
    height: 55px;
  }

  .contact-text p,
  .contact-text .sim-highlight {
    font-size: 22px;
  }

  .quick-links p {
    font-size: 26px;
  }

  .quick-links a {
    font-size: 22px;
    padding: 5px 3px;
  }

   footer {
    font-size: 17px;
    padding: 25px 80px;
  }
}

@media (min-width: 1600px) {
  .future {
    padding: 120px 100px;
    gap: 30px;
  }

  .future h2, .future .together {
    font-size: 48px;
  }

  .bottom-footer {
    padding: 60px 100px;
    gap: 60px;
    min-height: 220px;
    max-width: 1600px;
    margin: 0 auto;
  }

  .logo-left img {
    height: 160px;
  }

  .contact-item img {
    height: 60px;
  }

  .contact-text p,
  .contact-text .sim-highlight {
    font-size: 24px;
  }

  .quick-links p {
    font-size: 28px;
  }

  .quick-links a {
    font-size: 24px;
    padding: 6px 4px;
  }

   footer {
    font-size: 18px;
    padding: 30px 100px;
  }
}
.hero-about {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: calc(100vh - 70px);
  margin-top: 70px;
  padding: 20px;
  text-align: center;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
}

.hero-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

.hero-about > div {
  position: relative;
  z-index: 1;
}

.about-hero-logo {
  flex: 0 1 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hero-logo img {
  height: 200px;
  width: auto;
  margin-top: 50px;
}

.about-hero-description {
  padding: 10px;
  flex: 1 1 320px;
  border: 2px solid rgb(117, 116, 116);
  border-radius: 20px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.5);
}

.about-hero-description hr {
  width: 150px;
  height: 3px;
  margin: 0 auto 16px auto;
  border: none;
  border-radius: 10px;
  background: linear-gradient(to right, transparent, #ffffff, transparent);
}

.about-hero-description h1 {
  color: #f4f4f4;
  font-size: 35px;
  margin-bottom: 10px;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
}

.about-hero-description p {
  font-family: 'Raleway', 'Open Sans', sans-serif;
  font-size: 16px;
  color: #f4f4f4;
  line-height: 1.6;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .hero-about {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: 95vh;
    padding: 60px 40px;
    gap: 30px;
  }

  .about-hero-logo img {
    height: 220px;
  }

  .about-hero-description {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-hero-description .action-buttons {
    margin-top: 30px;
    align-items: flex-start;
  }

  .about-hero-description h1 {
    font-size: 45px;
  }

  .about-hero-description p {
    font-size: 18px;
    margin: 0;
  }
}

@media (min-width: 1280px) {
  .hero-about {
    padding: 80px 80px;
    gap: 40px;
  }

  .about-hero-logo img {
    height: 250px;
  }

  .about-hero-description {
    flex: 1 1 500px;
    padding: 30px 40px;
  }

  .about-hero-description h1 {
    font-size: 55px;
  }

  .about-hero-description p {
    font-size: 20px;
    margin: 0;
  }
}

@media (min-width: 1600px) {
  .hero-about {
    padding: 100px 120px;
    gap: 50px;
  }

  .about-hero-logo img {
    height: 300px;
  }

  .about-hero-description {
    flex: 1 1 600px;
    padding: 40px 50px;
  }

  .about-hero-description h1 {
    font-size: 65px;
  }

  .about-hero-description p {
    font-size: 22px;
    margin: 0;
  }
}


.timeline-section {
  background: #f4f4f4;
  padding: 40px 16px;
}

.timeline-section .header {
  text-align: center;
  margin-bottom: 32px;
}

.timeline-section .header h1 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 32px;
  margin-bottom: 16px;
  color: #04326b;
}

.timeline-section .header p {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.5;
  max-width: 100%;
  margin: 0 auto;
}

.timeline-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.timeline-item {
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid #6c757d;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.date-header {
  padding-left: 10px;
  margin-bottom: 12px;
  position: relative;
  font-family: 'Raleway', 'Open Sans', sans-serif;
  color: #04326b;
  font-size: 20px;
  font-weight: 600;
  align-self: flex-start;
}

.date-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: #6c757d;
  border-radius: 2px;
}

.image-box {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  background-color: #ffffff;
  overflow: hidden;
  aspect-ratio: 15 / 9;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.timeline-item .timeline-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.5;
  text-align: left;
}

.timeline-item .timeline-description strong {
  font-family: 'Raleway', 'Open Sans', sans-serif;
  color: #04326b;
}

.timeline-item:nth-child(1)  .date-header::before { background-color: #4ade80; }
.timeline-item:nth-child(2)  .date-header::before { background-color: #22d3ee; }
.timeline-item:nth-child(3)  .date-header::before { background-color: #fb923c; }
.timeline-item:nth-child(4)  .date-header::before { background-color: #a78bfa; }
.timeline-item:nth-child(5)  .date-header::before { background-color: #4ade80; }
.timeline-item:nth-child(6)  .date-header::before { background-color: #22d3ee; }
.timeline-item:nth-child(7)  .date-header::before { background-color: #fb923c; }

@media (min-width: 768px) {
  .timeline-section {
    padding: 56px 24px;
  }

  .timeline-section .header {
    margin-bottom: 40px;
  }

  .timeline-section .header h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .timeline-section .header p {
    font-size: 16px;
    max-width: 640px;
  }

  .timeline-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
  }

  .timeline-item {
    padding: 20px;
  }

  .date-header {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .timeline-item .timeline-description {
    font-size: 16px;
  }
}

@media (min-width: 1280px) {
  .timeline-section {
    padding: 72px 32px;
  }

  .timeline-section .header {
    margin-bottom: 56px;
  }

  .timeline-section .header h1 {
    font-size: 34px;
  }

  .timeline-section .header p {
    font-size: 18px;
    max-width: 720px;
  }

  .timeline-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
  }

  .timeline-item {
    padding: 24px;
  }

  .date-header {
    font-size: 26px;
  }

  .timeline-item .timeline-description {
    font-size: 18px;
  }
}

@media (min-width: 1600px) {
  .timeline-section {
    padding: 80px 40px;
  }

  .timeline-section .header h1 {
    font-size: 38px;
  }

  .timeline-section .header p {
    font-size: 20px;
    max-width: 800px;
  }

  .timeline-container {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    gap: 28px;
  }

  .timeline-item {
    padding: 28px;
  }

  .date-header {
    font-size: 28px;
  }

  .timeline-item .timeline-description {
    font-size: 20px;
  }
}

.boi-section {
  padding: 32px 16px;
  background-color: #f7f9fc;
}

.boi-header {
  text-align: center;
  margin-bottom: 32px;
}

.boi-header h2 {
  font-family: 'Montserrat', 'Open Sans', sans-serif; 
  font-size: 32px;
  margin-bottom: 30px;
  color: #04326b;
}

.boi-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.boi-image-container {
  margin-bottom: 8px;
}

.boi-image-container img {
  width: 100%;
  max-width: 260px;
  height: auto;
}

.boi-description {
  text-align: center;
  max-width: 600px;
}

.boi-description-header h4 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #4a4a4a;
  font-family: 'Raleway', 'Open Sans', sans-serif;
}

.boi-description-header p {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  font-family: 'Open Sans', sans-serif;
}

.boi-paragraph p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #4a4a4a;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
}

.boi-button button {
  background: #d6d6d6;
  color: #04326b;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Raleway', 'Open Sans', sans-serif;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.boi-button button:hover {
  transform: scale(1.05);
  letter-spacing: 3px;
  background-color: #0066ff;
  color: #ffffff;
  box-shadow: rgb(0 102 255 / 40%) 0px 7px 29px 0px;
}

.boi-button button:focus-visible {
  outline: 2px solid #0066ff;
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .boi-container {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  .boi-image-container {
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .boi-description {
    flex: 1 1 520px;
    text-align: left;
  }

  .boi-header h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .boi-description-header p,
  .boi-paragraph p {
    font-size: 16px;
  }
}

@media (min-width: 1280px) {
  .boi-container {
    gap: 64px;
  }

  .boi-image-container {
    flex: 0 0 360px;
  }

  .boi-image-container img {
    max-width: 300px;
  }

  .boi-description {
    flex: 0 0 600px;
  }

  .boi-header h2 {
    font-size: 34px;
  }

  .boi-description-header p,
  .boi-paragraph p {
    font-size: 16px;
    max-width: 720px;
  }
}

@media (min-width: 1600px) {
  .boi-container {
    max-width: 1400px;
    gap: 80px;
  }

  .boi-image-container img {
    max-width: 340px;
  }

  .boi-description {
    flex: 0 0 680px;
  }

  .boi-header h2 {
    font-size: 38px;
  }

  .boi-description-header p,
  .boi-paragraph p {
    font-size: 17px;
    max-width: 800px;
  }
}

/*
#leadership-profiles {
  background-image: url('../images/leadership-profiles-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;    
  background-attachment: fixed; 
}

.image-container{
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;  
}


.image-container img{
  height: 200px;
  width: auto;

}
.image-container h2 {
  margin: 10px 0;
  font-family: 'Montserrat', 'Open Sans', sans-serif; 
  font-size: 32px;
  color: #04326b;
}

.image-container hr {
 width: 300px;                
  height: 3px;                  
  margin: 0 auto 16px auto;      
  border: none;                 
  border-radius: 10px;           
  background: linear-gradient(
    to right,
    transparent,
    #04326b,
    transparent
  );      
}


.profile{
  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


.profile-card {
  background: #f4f4f4;
  margin: 20px;
  border-radius: 30px;

  box-shadow:
    0 -8px 18px rgba(0, 0, 0, 0.12),
    0  12px 26px rgba(0, 0, 0, 0.18);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.profile-conainer-img {
  position: relative; 
  width: 290px; 
  height: 300px; 
  margin: 0 20px;
  
}

.profile-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; 
}

.profile-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-pict {
  position: absolute;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  width: 300px; 
  height: 300px; 
  z-index: 2; 
}

.profile-pict img {
  max-width: 600px;
  max-height: 600px;
  width: 100%;
  height: 100%;
  border-radius: 20%;
  object-fit: cover;
}

.profile-content {
  text-align: center;
  margin-top: -30px; 
  position: relative;
  z-index: 3;
}


.profile-content h4 {
  color: #ffffff;
  background: #00344f;
  border-radius: 15px;
  width: 80%;
  margin: 0 auto;
  padding: 8px;
  font-size: 18px;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  box-shadow: 0 -4px 0 #00a86b;
}


.profile-content p{
   font-family: 'Raleway', 'Open Sans', sans-serif; 
   color: #4a4a4a;
   font-size: 18px;
   font-weight: bold;
   padding: 10px;
}
*/






















































.mission-vission-container {
  background-image: url('../images/mi-vis-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  padding: 30px;
  justify-content: center;
}

.mission-left, .vission-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
  flex: 1 1 300px;
  max-width: 450px;
}

.mission-image-container, .visson-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.mission-image-container h4,
.visson-image-container h4 {
  font-family: 'Raleway', 'Open Sans', sans-serif;
  color: #04326b;
  margin: 0;
  text-align: left;
  font-size: 22px;
  font-weight: 600;
  width: 100%;
}

.mission-image-container img,
.visson-image-container img {
  width: 150px;
  height: auto;
}

.mission-description p, .vission-description p {
  line-height: 1.6;
  margin: 0;
  text-align: justify;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #4a4a4a;
}

.core-values {
  background-image: url('../images/mi-vis-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  gap: 20px;
}

.core-values-icon img {
  height: 200px;
  width: auto;
}

.core-values-icon h4 {
  font-family: 'Raleway', 'Open Sans', sans-serif;
  color: #04326b;
  font-size: 22px;
  font-weight: 600;
  width: 100%;
}

.core-values-table {
  background: #f4f4f4;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  max-width: 1300px;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.core-values-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  max-width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.core-values-card:hover {
  transform: scale(1.05); 
  box-shadow: 0 16px 30px rgba(0,0,0,0.25); 
}

.core-image-icon img {
  width: 60px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.core-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.core-text h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  margin: 0 0 4px 0;
  color: #04326b;
}

.core-text p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  margin: 0;
  color: #4a4a4a;
  text-align: justify;  
}

@media (min-width: 768px) {
  .mission-image-container h4,
  .visson-image-container h4 {
    font-size: 26px;
  }

  .mission-description p,
  .vission-description p {
    font-size: 16px;
  }

  .core-values-icon h4 {
    font-size: 26px;
  }

  .core-text h3 {
    font-size: 18px;
  }

  .core-text p {
    font-size: 16px;
  }
}

@media (min-width: 1280px) {
  .mission-image-container h4,
  .visson-image-container h4 {
    font-size: 30px;
  }

  .mission-description p,
  .vission-description p {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .core-values-icon h4 {
    font-size: 30px;
  }

  .core-text h3 {
    font-size: 22px;
  }

  .core-text p {
    font-size: 18px;
  }
}

@media (min-width: 1600px) {
  .mission-image-container h4,
  .visson-image-container h4 {
    font-size: 34px;
  }

  .mission-description p,
  .vission-description p {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .core-values-icon h4 {
    font-size: 34px;
  }

  .core-text h3 {
    font-size: 26px;
  }

  .core-text p {
    font-size: 20px;
  }
}



.projects-hero {
  margin-top: 70px;
  min-height: calc(100vh - 70px);
  padding: 40px 20px 60px;
  background-color: #f4f4f4;
  box-sizing: border-box;
}

.projects-hero h1 {
  text-align: center;
  letter-spacing: 1px;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 32px;
  margin-bottom: 20px;
  color: #04326b;
}

.projects-hero p {
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
  color: #4a4a4a;
  font-family: 'Raleway', 'Open Sans', sans-serif;
  line-height: 1.6;
}

.products-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 0 10px;
  max-width: 100%;
  margin: 0 auto;
}

.products-container > div {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.products-image-container {
  display: flex;
  gap: 8px;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 10px;
  background-color: #edf5fb;
  justify-content: space-between;
}

.products-container > div:nth-child(2) .products-image-container,
.products-container > div:nth-child(4) .products-image-container {
  background-color: #effff2;
}

.products-image-container img {
  flex: 1 1 30%;
  max-width: 32%;
  border-radius: 6px;
  object-fit: cover;
}

.products-container > div h4 {
  font-size: 20px;
  color: #04326b;
  font-family: 'Raleway', 'Open Sans', sans-serif;
  text-align: center;
  margin: 0 auto 10px auto;
}

.products-container div p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.6;
  margin-top: 10px;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
}

@media (min-width: 768px) {
  .products-container {
    max-width: 1000px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .projects-hero h1 {
    font-size: 44px;
    margin-bottom: 30px;
  }

  .projects-hero p {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .products-container > div {
    padding: 20px;
  }

  .products-container > div h4 {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .products-container div p {
    font-size: 18px;
  }

  .products-image-container img {
    max-width: 30%;
  }
}

@media (min-width: 1280px) {
  .products-container {
    max-width: 1200px;
    gap: 32px;
  }

  .projects-hero h1 {
    font-size: 56px;
  }

  .projects-hero p {
    font-size: 20px;
  }

  .products-container > div {
    padding: 24px;
  }

  .products-container > div h4 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .products-container div p {
    font-size: 18px;
  }

  .products-image-container img {
    max-width: 28%;
  }
}

@media (min-width: 1600px) {
  .products-container {
    max-width: 1400px;
    gap: 40px;
  }

  .projects-hero h1 {
    font-size: 60px;
  }

  .projects-hero p {
    font-size: 22px;
  }

  .products-container > div {
    padding: 28px;
  }

  .products-container > div h4 {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .products-container div p {
    font-size: 18px;
  }

  .products-image-container img {
    max-width: 26%;
  }
}

@media (hover: hover) and (pointer: fine) {
  .products-container > div {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .products-container > div:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  }

  .products-image-container {
    transition: background-color 0.3s ease;
  }

  .products-container > div:hover .products-image-container {
    filter: brightness(1.05);
  }

  .products-image-container img {
    transition: transform 0.35s ease;
  }

  .products-container > div:hover .products-image-container img {
    transform: scale(1.05);
  }

  .products-container > div h4 {
    transition: color 0.3s ease;
  }

  .products-container > div:hover h4 {
    color: #021f4a;
  }
}



.what-is-new {
  background-image: url('../images/leadership-profiles-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 40px 20px;
}

.what-is-new h2 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 32px;
  color: #04326b;
  margin-bottom: 20px;
}

.what-is-new p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #4a4a4a;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
}

.hi-go-wrapper {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.hi-go {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  background: #f4f4f4;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hi-go::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80%;
  background: #00344f;
  z-index: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.hi-go-image {
  width: 100%;
  position: relative;
  z-index: 1;
}

.hi-go-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hi-go-description {
  position: relative;
  z-index: 1;
  color: #ffffff;
  padding: 20px 25px;
  text-align: center;
}

.hi-go-title h4 {
  font-size: 22px;
  margin-bottom: 10px;
  font-family: 'Raleway', 'Open Sans', sans-serif;
}

.hi-go-subtitle p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 15px;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hi-go {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .hi-go-image,
  .hi-go-description {
    flex: 1;
  }

  .hi-go-description {
    text-align: left;
    padding: 40px;
  }

  .what-is-new h2 {
    font-size: 45px;
  }

  .what-is-new p {
    font-size: 18px;
  }

  .hi-go-title h4 {
    font-size: 26px;
  }

  .hi-go-subtitle p {
    font-size: 18px;
  }
}

@media (min-width: 1280px) {
  .what-is-new h2 {
    font-size: 55px;
  }

  .what-is-new p {
    font-size: 20px;
  }

  .hi-go {
    gap: 50px;
  }

  .hi-go-title h4 {
    font-size: 28px;
  }

  .hi-go-subtitle p {
    font-size: 19px;
  }

  .hi-go-description {
    padding: 50px;
  }
}

@media (min-width: 1600px) {
  .what-is-new h2 {
    font-size: 60px;
  }

  .what-is-new p {
    font-size: 22px;
  }

  .hi-go {
    gap: 60px;
  }

  .hi-go-title h4 {
    font-size: 32px;
  }

  .hi-go-subtitle p {
    font-size: 20px;
  }

  .hi-go-description {
    padding: 60px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .hi-go:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  }
}
.app {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  background-image: url('../images/leadership-profiles-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 50px 20px;
  margin: 0 auto;
}

/* ==============================
   CARDS
============================== */
.viber,
.pickapp-pay {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: #f4f4f4;
  border-radius: 20px;
  padding: 24px;
  flex: 1 1 100%;
  max-width: 100%;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* overlay */
.viber::before,
.pickapp-pay::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 75%;
  background: #00344f;
  z-index: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* layered content */
.viber-image,
.pickapp-pay-image,
.description {
  position: relative;
  z-index: 1;
}

/* images */
.viber-image img,
.pickapp-pay-image img {
  max-width: 100px;
  height: auto;
  flex-shrink: 0;
  animation: floatY 3s ease-in-out infinite;
}

/* description */
.description {
  color: #ffffff;
  padding: 16px;
  text-align: left;
  margin-top: 50px;
}

.viber-title h4,
.pickapp-pay-title h4 {
  font-size: 22px;
  margin-bottom: 8px;
  font-family: 'Raleway', 'Open Sans', sans-serif;
}

.viber-subtitle p,
.pickapp-pay-subtitle p {
  font-size: 16px;
  margin-bottom: 0;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
}

/* hover lift */
@media (hover: hover) and (pointer: fine) {
  .viber:hover,
  .pickapp-pay:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  }
}

/* floating animation */
@keyframes floatY {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(5px); }
}

/* ==============================
   HORIZONTAL LAYOUT FOR BIGGER SCREENS
============================== */
@media (min-width: 768px) {
  .app {
    flex-direction: row;
  }

  .viber,
  .pickapp-pay {
    flex: 1 1 45%;
    max-width: 520px;
  }

  .viber-image img,
  .pickapp-pay-image img {
    max-width: 120px;
  }
}

/* Larger screens adjustments */
@media (min-width: 1280px) {
  .viber,
  .pickapp-pay {
    flex: 1 1 40%;
    max-width: 600px;
    padding: 32px;
    gap: 32px;
  }

  .viber-image img,
  .pickapp-pay-image img {
    max-width: 140px;
  }

  .viber-title h4,
  .pickapp-pay-title h4 {
    font-size: 28px;
  }

  .viber-subtitle p,
  .pickapp-pay-subtitle p {
    font-size: 19px;
  }

  .description {
    padding: 36px;
  }
}

@media (min-width: 1600px) {
  .viber,
  .pickapp-pay {
    flex: 1 1 35%;
    max-width: 700px;
    padding: 40px;
    gap: 40px;
  }

  .viber-image img,
  .pickapp-pay-image img {
    max-width: 160px;
  }

  .viber-title h4,
  .pickapp-pay-title h4 {
    font-size: 32px;
  }

  .viber-subtitle p,
  .pickapp-pay-subtitle p {
    font-size: 20px;
  }

  .description {
    padding: 48px;
  }
}



/* ============================
   BASE (MOBILE-FIRST)
=============================== */
.charging-solutions {
  padding: 28px 16px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

.charging-solutions h2 {
   font-family: 'Montserrat', 'Open Sans', sans-serif; 
  font-size: 32px;
  color: #04326b;
  margin-bottom: 20px;
}

.section-description {
 font-size: 16px;
  margin-bottom: 30px; 
  color: #4a4a4a;
  font-family: 'Open Sans', sans-serif; 
  line-height: 1.6;
}

/* ============================
   LAYOUT
=============================== */
.charging-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: stretch;
}

/* ============================
   CARD
=============================== */
.charging-card {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 16px;

  width: 100%;
  max-width: 350px;
  min-height: auto;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.charging-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ============================
   IMAGE
=============================== */
.card-image {
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ============================
   TITLES
=============================== */
.card-title {
  font-size: 20px;
  margin-bottom: 6px;
  font-family: 'Raleway', sans-serif;
}

.card-title--blue {
  color: #04326b;
}

.card-title--green {
  color: #00a86b;
}

/* ============================
   DESCRIPTION
=============================== */
.card-description {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
}


.charging-card:first-of-type .card-description {
   background-color: #f4f4f4;
  padding: 12px;
  border-radius: 12px;
}

/* ============================
   META / DETAILS
=============================== */
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
}

.charging-card:nth-of-type(2) .card-meta {
  background-color: #f4f4f4;
  padding: 12px;
  border-radius: 12px;
}

.detail-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 8px 12px;
  border-radius: 50px;
  font-size: 14px;

  width: 100%;
  max-width: 260px;
  box-sizing: border-box;
}

.detail-item img {
  width: 22px;
  height: 22px;
}

.detail-item p {
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

/* ============================
   DETAIL BACKGROUNDS
=============================== */
.detail-item--primary {
  background-color: #04326b;
}

.detail-item--success {
  background-color: #00a86b;
}

.detail-item--info {
  background-color: #e6f0ff;
}

.detail-item--accent {
  background-color: #e9f7f1;
}

/* ============================
   TEXT COLOR TOKENS
=============================== */
.text-light {
  color: #f4f4f4;
   font-weight: bold;
}

.text-blue {
  color: #0e4176;
  font-weight: bold;
}

.text-green {
  color: #00a86b;
   font-weight: bold;
}

/* ============================
   TABLET (768px)
=============================== */
@media (min-width: 768px) {

  .charging-solutions h2 {
    font-size: 45px;
  }

  .section-description {
    font-size: 18px;
    margin-bottom: 36px;
  }

  .charging-cards-container {
    gap: 20px;
  }

  .charging-card {
    max-width: 380px;
    padding: 20px;
  }

  .card-image {
    height: 180px;
  }

  .card-title {
    font-size: 22px;
  }

  .card-description {
    font-size: 16px;
  }

  .detail-item {
    font-size: 14px;
    max-width: 260px;
  }
}


/* ============================
   DESKTOP (1280px)
=============================== */
@media (min-width: 1280px) {

  .charging-solutions {
    padding: 40px 20px;
  }

  .charging-solutions h2 {
    font-size: 55px;
  }

  .section-description {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .charging-cards-container {
    gap: 24px;
  }

  .charging-card {
    max-width: 400px;
    padding: 24px;
  }

  .card-image {
    height: 200px;
  }

  .card-title {
    font-size: 24px;
  }

  .card-description {
    font-size: 17px;
  }

  .detail-item {
    font-size: 15px;
    max-width: 280px;
  }
}


/* ============================
   LARGE DESKTOP (1600px)
=============================== */
@media (min-width: 1600px) {

  .charging-solutions {
    padding: 50px 20px;
  }

  .charging-solutions h2 {
    font-size: 60px;
  }

  .section-description {
    font-size: 22px;
    margin-bottom: 48px;
  }

  .charging-cards-container {
    gap: 28px;
  }

  .charging-card {
    max-width: 420px;
    padding: 28px;
  }

  .card-image {
    height: 220px;
  }

  .card-title {
    font-size: 26px;
  }

  .card-description {
    font-size: 18px;
  }

  .detail-item {
    font-size: 16px;
    max-width: 300px;
  }
}


/* ============================
   VIDEO HIGHLIGHT (MOBILE FIRST)
=============================== */

.video-highlight {
  display: flex;
  flex-direction: column;
  padding: 60px 20px;
  background-image: url('../images/leadership-profiles-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.highlight-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}
.the-video {
  width: 100%;
  height: 250px; 
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.the-video video {
  width: 100%;
  height: 100%;       
  object-fit: cover;  
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease;
}


.highlight-description {
  width: 100%;
  text-align: center;
}


.highlight-title h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #04326b;
  font-family: 'Raleway', 'Open Sans', sans-serif;
  transition: color 0.3s ease;
}


.highlight-subtitle p {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  font-family: 'Open Sans', sans-serif;
}


.highlight-par p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #4a4a4a;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
}
@media (min-width: 768px) {

  .video-highlight {
    padding: 80px 80px;
    background-attachment: fixed;
    gap: 30px;
  }

  .highlight-container {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 32px;
  }


  .highlight-container:first-child .the-video,
  .highlight-container:nth-child(2) .the-video {
    flex: 0 0 40%;
    max-width: 480px;
    height: 300px; 
  }


  .highlight-container:first-child .highlight-description {
    flex: 1;
    padding-left: 32px;
    text-align: left;
  }

  .highlight-container:nth-child(2) {
    flex-direction: row-reverse;
  }

  .highlight-container:nth-child(2) .highlight-description {
    flex: 1;
    padding-right: 32px;
    text-align: right;
  }

  .the-video video {
    width: 100%;
    height: 100%;      
    object-fit: cover;  
  }
}

@media (hover: hover) and (pointer: fine) {
  .highlight-container:hover {
    transform: translateY(-4px);
  }
  .highlight-container:hover .the-video {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  }
  .highlight-container:hover .the-video video {
    transform: scale(1.05);
  }
  .highlight-container:hover .highlight-title h4 {
    color: #021f44;
  }
}

/* ============================
   DESKTOP (1280px)
=============================== */
@media (min-width: 1280px) {

  .video-highlight {
    padding: 100px 100px;
  }

  .highlight-container {
    gap: 40px;
  }

  .highlight-title h4 {
    font-size: 26px;
  }

  .highlight-subtitle p {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .highlight-par p {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .highlight-container:first-child .the-video,
  .highlight-container:nth-child(2) .the-video {
    max-width: 520px;
    height: 340px; /* taller for desktop */
  }

  .the-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ============================
   LARGE DESKTOP (1600px)
=============================== */
@media (min-width: 1600px) {

  .video-highlight {
    padding: 120px 120px;
  }

  .highlight-container {
    gap: 48px;
  }

  .highlight-title h4 {
    font-size: 30px;
  }

  .highlight-subtitle p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .highlight-par p {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .highlight-container:first-child .the-video,
  .highlight-container:nth-child(2) .the-video {
    max-width: 580px;
    height: 380px; 
  }

  .the-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}





/* ============================
   ESG Hero Section
=============================== */
.esg-hero {
  position: relative; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 70px;
  min-height: calc(100vh - 70px);
  padding: 40px 20px;
  background-image: url('../images/esg-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  gap: 20px;
  overflow: hidden; 
}
/* Overlay */
.esg-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 50, 107, 0.40); 
  z-index: 1;
}

.esg-hero-content {
  position: relative;
  z-index: 2;
}


.esg-hero .esg-title h1 {
  color: #f4f4f4;
  font-size: 35px; 
  margin-bottom: 10px;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  line-height: 1.2;
}


.esg-hero .esg-subtitle p {
  color: #f4f4f4;
  font-size: 14px; 
  font-weight: 500;
  margin-bottom: 20px;
  font-family: 'Raleway', 'Open Sans', sans-serif;
  max-width: 500px;
}


.esg-hero .esg-button {
  display: flex;
  justify-content: center;
  width: 100%;
}


.esg-hero .esg-button button {
  font: bold 14px 'Raleway', 'Open Sans', sans-serif;
  width: 180px;
  max-width: 300px;
  height: 40px;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  border: none;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.esg-hero .esg-button button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Button Variants */
.esg-hero .esg-button .green {
  background: #00a86b;
  color: #fff;
}

.esg-hero .esg-button .white {
  background: #fff;
  color: #2b88d9;
  border: 2px solid #2b88d9;
}

@media (min-width: 768px) {

  .esg-hero {
    align-items: flex-start;
    text-align: left;
    min-height: 100vh;
    padding: 80px 70px;
    gap: 40px;
  }

  .esg-hero .esg-title h1 {
    font-size: 60px;
    margin-bottom: 20px;
  }

  .esg-hero .esg-subtitle p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
  }

  .esg-hero .esg-button {
    justify-content: flex-start;
    width: auto;
  }

  .esg-hero .esg-button button {
    font-size: 16px;
    width: 200px;
    height: 50px;
    border-radius: 25px;
  }
}
@media (min-width: 1280px) {

  .esg-hero {
    padding: 100px 110px;
    gap: 50px;
  }

  .esg-hero .esg-title h1 {
    font-size: 68px;
  }

  .esg-hero .esg-subtitle p {
    font-size: 22px;
    max-width: 650px;
  }

  .esg-hero .esg-button button {
    width: 220px;
    height: 54px;
  }
}
@media (min-width: 1600px) {

  .esg-hero {
    padding: 120px 170px;
    gap: 60px;
  }

  .esg-hero .esg-title h1 {
    font-size: 76px;
  }

  .esg-hero .esg-subtitle p {
    font-size: 24px;
    max-width: 720px;
  }

  .esg-hero .esg-button button {
    width: 240px;
    height: 58px;
    font-size: 17px;
  }
}


/* =========================
   ESG GRID SECTION
========================= */
.esg-grid {
  background-color: #ffffff;
  padding: 40px 20px;
  max-width: 1500px;
  margin: 0 auto;
}

/* =========================
   Grid Header
========================= */
.gird-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 15px;
  margin-bottom: 40px;
}

.gird-title h2 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 32px;
  color: #04326b;
  margin-bottom: 16px;
  line-height: 1.2;
}

.gird-title p {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.6;
  max-width: 700px;
}

/* =========================
   Grid Layout
========================= */
.gird-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* =========================
   CARD BASE – Products Style
========================= */
.gird-container .card {
  border-radius: 14px;
  padding: 24px;
  min-height: 260px;
   background-color: #ffffff;
  color: #4a4a4a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

/* Inner stretch */
.card > .footprint,
.card > .audit,
.card > .traditional,
.card > .premium-support,
.card > blockquote.review {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Center ONLY the quote text */
blockquote.review .review-text {
  align-self: center; 
  text-align: center;
  margin-top: 20px;
    max-width: 420px;
}


/* =========================
   Hover Effects (Desktop only)
========================= */
@media (hover: hover) and (pointer: fine) {
  .gird-container .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  }
}

/* =========================
   Shared Content Styles
========================= */
.top {
  margin-bottom: 16px;
}

.bottom,
.audit-bottom {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
}

.metric {
  display: flex;
  align-items: center;
  gap: 10px;
}

.metric .value {
  font-family: 'Raleway', sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.label {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  margin-top: 6px;
  color: #4a4a4a;
}

/* =========================
   Icons
========================= */
.icon-arrow {
  color: #00a86b;
  font-size: 18px;
}

.icon-arrow-up {
  color: #2563eb;
  font-size: 18px;
}

/* =========================
   Review Cards
========================= */
blockquote.review {
  margin: 0;
  padding: 0;
  border: none;
}

blockquote.review .quote-icon {
  font-size: 50px;
  color: #2b88d9;
 
}

blockquote.review .review-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
  color: #4a4a4a;
}
/* =========================
   Review Profile Card Design
========================= */
blockquote.review .review-profile {
  display: flex;
  align-items: center;       
  gap: 12px;
  padding: 10px 5px;        
  border-radius: 12px;        

}


/* Image stays circular and aligned */
blockquote.review .profile-image img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;  
}

/* Name & Location stack */
blockquote.review .profile-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Name styling */
blockquote.review .name {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  color: #04326b;
  line-height: 1.2;
}

/* Location styling */
blockquote.review .location {
  font-family: 'Raleway', 'Open Sans', sans-serif;
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}



/* =========================
   Responsive – Tablet
========================= */
@media (min-width: 768px) {

  .gird-title h2 {
    font-size: 45px;
  }

  .gird-title p, .label {
    font-size: 18px;
  } 
  
  .gird-container .card .bottom p,
  .gird-container blockquote.review .review-text {
    font-size: 18px; 
  }

  .gird-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .gird-container .card {
    padding: 28px;
    min-height: 280px;
  }
}

/* =========================
   Responsive – Desktop (GRID PRESERVED)
========================= */
@media (min-width: 1024px) {
 
  .gird-title h2 {
    font-size: 55px;
  }

  .gird-title p, .label {
    font-size: 20px;
  }  
  

  .gird-container .card .bottom p,
  .gird-container blockquote.review .review-text {
    font-size: 18px; 
  }

  .gird-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .gird-container .card:nth-child(1) { grid-column: 1 / 2; grid-row: 1; }
  .gird-container .card:nth-child(2) { grid-column: 2 / 4; grid-row: 1; }
  .gird-container .card:nth-child(3) { grid-column: 4 / 5; grid-row: 1; }
  .gird-container .card:nth-child(4) { grid-column: 1 / 2; grid-row: 2; }
  .gird-container .card:nth-child(5) { grid-column: 2 / 3; grid-row: 2; }
  .gird-container .card:nth-child(6) { grid-column: 3 / 5; grid-row: 2; }

  .gird-container .card {
    padding: 32px;
    min-height: 300px;
  }
}

/* =========================
   Ultra Wide Screens
========================= */
@media (min-width: 1600px) {
 
  .gird-title h2 {
    font-size: 60px;
  }

  .gird-title p, .label {
    font-size: 22px;
  } 
 
  .gird-container .card .bottom p,
  .gird-container blockquote.review .review-text {
    font-size: 18px; 
  }

  .gird-container .card {
    padding: 36px;
  }
}
