/* Regular */
@font-face { font-family: "Lato"; src: url("fonts/Lato/Lato-Regular.ttf") format("truetype"); font-weight: 400; font-style: normal; }

/* Bold */
@font-face { font-family: "Lato"; src: url("fonts/Lato/Lato-Bold.ttf") format("truetype"); font-weight: 700; font-style: normal; }

/* Italic */
@font-face { font-family: "Lato"; src: url("fonts/Lato/Lato-Italic.ttf") format("truetype"); font-weight: 400; font-style: italic; }

/* Light */
@font-face { font-family: "Lato"; src: url("fonts/Lato/Lato-Light.ttf") format("truetype"); font-weight: 300; font-style: normal; }

/* Black */
@font-face { font-family: "Lato"; src: url("fonts/Lato/Lato-Black.ttf") format("truetype"); font-weight: 900; font-style: normal; }

/* Thin */
@font-face { font-family: "Lato"; src: url("fonts/Lato/Lato-Thin.ttf") format("truetype"); font-weight: 100; font-style: normal; }


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

body {
  font-family: "Lato", Arial, Helvetica, sans-serif;
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
}

.container {
  padding: 0 100px;
  max-width: 1600px;
  margin: 65px auto;
}
.container-fluid {
    width: 100%;
}

.row {
  display: flex;
  gap: 10px;
  padding: 5px;
}

.col-12 {
  width: 100%;
}

.col-11 {
  width: 91.66666667%;
}

.col-10 {
  width: 83.33333333%;
}

.col-9 {
  width: 75%;
}

.col-8 {
  width: 66.66666667%;
}

.col-7 {
  width: 58.33333333%;
}

.col-6 {
  width: 50%;
}

.col-5 {
  width: 41.66666667%;
}

.col-4 {
  width: 33.33333333%;
   font-size: 16px;
}

.col-3 {
  width: 25%;
}

.col-2 {
  width: 16.66666667%;
}

.col-1 {
  width: 8.33333333%;
}

.flex {
  display: flex;
}

.flex-space-between {
  justify-content: space-between;
}
.flex-end {
  justify-content: end;  
}
.flex-item-center {
    align-items: center;
}
.flex-content-center {
    justify-content: center;
}

.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}


.pp-r-5 {
  padding-right: 5%;
}

.p-b-15 {
  padding-bottom: 15px;
}

.p-l-30 {
  padding-left: 30px;
}

.p-t-30 {
  padding-top: 30px;
}
.p-0 {padding: 0;}
.m-t-5 {
  margin-top: 5px;
}
.m-b-5 {
  margin-bottom: 5px;
}
.m-b-10 {
  margin-bottom: 10px;
}
.m-nt-5 {
    margin-top: -5%;
}

.text-right {
  text-align: right;
  font-size: 16px;
}

.text-left {
  text-align: left;
}

.flot-right {
  float: right;
}

.color-gray {
  color: #aaaaaa;
}

.color-light-gray {
  background-color: #e7e7e7;
}

.logo-container {
  flex-direction: row;
  align-items: top;
}

.logo {
  width: 80px;
  height: 100px;
  background-color: #aaaaaa;
}

.logo-title {
  font-size: 16px;
}
.logo-title a:hover, .menu a:hover {
    font-weight: 600;
}

.menu {
    margin-left: 35px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}

.grid-5-child {
  display: flex;
  font-size: 25px;
  padding: 40px;
  text-align: center;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 15px;
  border: 1px solid #959595;
  color: #626262;
}

.section-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 25px;
}

.section-text {
  font-size: 16px;
}

.bullet-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

.bullet-box li {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 12px;
  font-family: Lato, sans-serif;
}

.custom-video {
  width: 100%;
  border: 1px solid black;
  border-radius: 12px;
  overflow: hidden;
}

button {
  color: #ffffff; 
  background-color: #000; 
  font-size: 16px; 
  font-weight: 600; 
  padding: 15px 20px; 
  border: 1px solid #000; 
  outline: none; 
  border-radius: 6px; 
  cursor: pointer;
}

button:hover {
  color: #000; 
  border: 1px solid #000; 
  background-color: #fff;
}
.footer-section button {font-size: 14px; padding: 12px 16px; }
.footer { background-color: #f9f9f9; margin-bottom: 0; }
.footer-section { padding-top: 50px !important; padding-bottom: 50px !important; margin-bottom: 0 !important; }
.footer a:hover { font-weight: 600; }
.footer-section button {  color: #ffffff;   background-color: #000;   font-size: 14px;   font-weight: 600;   padding: 12px 16px;   
            border: 1px solid #000;   outline: none;   border-radius: 6px;   cursor: pointer; margin-top: 20px;}

.footer-section button:hover {  color: #000;   border: 1px solid #000;   background-color: #fff;}
 .footer-section .fact-text {min-height: 38px;}

/* About page */
.principles_text {display: flex;align-items: flex-start; }
.principles_text p {margin: 0 0 10px 0;}
/* Ensure images and videos are responsive */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.custom-video {
  max-width: 100%;
}


/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet and below (768px) */
@media screen and (max-width: 768px) {
  body {
    font-size: 1rem;
  }

  .container {
    padding: 0 30px;
    margin: 30px auto;
  }

  /* Make all columns full width on mobile */
  .row {
    flex-direction: column;
    gap: 20px;
  }

  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, 
  .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    width: 100%;
  }

  /* Header navigation */
  .logo-title {
    font-size: 14px;
  }

  .menu {
    margin-left: 20px;
    font-size: 14px;
  }
    
    /* Header layout */
    .header-row {
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
    }
    .header-row .col-4:first-child { width: auto; }
    .header-row .col-4:nth-child(2) { 
        width: 100%; 
        order: 3; 
        margin-top: 10px;
        font-size: 14px;
    }
    .header-row .col-4:last-child { width: auto; }

  /* Remove side padding on mobile */
  .pp-r-5 {
    padding-right: 0;
  }

  .p-l-30 {
    padding-left: 0;
    padding-top: 20px;
  }

  /* Grid adjustments */
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .grid-5-child {
    font-size: 18px;
    padding: 20px;
  }

  /* Text adjustments */
  .section-title,
  .section-text {
    font-size: 14px;
  }

  .text-right {
    text-align: left;
    font-size: 14px;
  }

  /* Footer adjustments */
    .container.footer-section {
        margin-bottom: 0;
        padding-bottom: 20px;
    }
  .footer-section .row {
    text-align: left;
  }

  .footer-section .col-4:last-child {
    text-align: left !important;
      line-height: 30px;
  }
    .footer-section .col-4 { text-align: left !important; margin-bottom: 15px; }
    
}

/* Mobile phones (480px) */
@media screen and (max-width: 480px) {
  body {
    font-size: 0.9rem;
  }

  .container {
    padding: 0 20px;
    margin: 20px auto;
  }

  .row {
    gap: 15px;
  }
    
    .mx-sm-50 {margin: 50px 0;}

  /* Header on small mobile */
  .logo-title {
    font-size: 14px;
  }

  .menu {
    margin-left: 15px;
    font-size: 14px;
  }

  /* Single column grid on very small screens */
  .grid-5 {
    grid-template-columns: 1fr;
  }

  .grid-5-child {
    font-size: 16px;
    padding: 15px;
  }

  /* Button adjustments */
  button {
    font-size: 14px;
    padding: 12px 16px;
  }

  /* Bullet points */
  .bullet-box li {
    font-size: 14px;
  }
    .hide-on-mobile {
    display: none;
  }
}
