body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23415d;
  background: #fff;
  margin: 0;
  padding: 0;
}

/* HERO BG SECTION - background image with diagonal cut */
.hero-bg-section {
  position: relative;
  min-height: 580px;
  background: linear-gradient(90deg, #fff 54%, transparent 54%),
    url('https://imaash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') no-repeat top right/cover;
  overflow: hidden;
}
.hero-bg-section::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 54%;
  background: url('images/360_F_605238145_gHgRJr9vjCu3ZretLvX5mAW5X5zjY1Ed-Picsart-AiImageEnhancer.jpg') no-repeat top right/cover;
  clip-path: polygon(39% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}
.header {
  display: flex;
  align-items: center;
  padding: 24px 5vw 0 5vw;
  background: transparent;
  position: relative;
  z-index: 3;
  flex-wrap: wrap;
}
.logo img {
  height: 70px;
}
.header nav ul {
  margin-left: auto; /* or 0 */
  justify-content: center; /* to center nav items */
  flex-wrap: wrap;
}

.header nav ul li {
  cursor: pointer;
  padding: 6px 0;
  
  border-bottom: 2px solid transparent;
  color: #23415d;
  transition: border 0.2s;
  background: none;
}
.header nav ul li.active,
.header nav ul li:hover {
  border-bottom: 2px solid #23415d;
}

nav ul li a {
  text-decoration: none;
  color: inherit; /* same as surrounding text */
  font-weight: bold;
}

nav ul li a:hover {
  color: #1e4872; /* highlight color on hover */
}

.search-bar {
  background-color: #23415d !important;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 170px;  /* smaller width */
}

.search-bar input {
  border: none;
  padding: 8px 10px;
  outline: none;
  background-color: transparent !important;
  color: rgb(234, 231, 231);
  flex-grow: 1;
  min-width: 0;
  font-size: 14px;
}

.search-bar button {
  background: #1b2d4a;
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 14px;
}




.hero-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 60px 5vw 0 5vw;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.hero-left {
  flex: 1.1;
  min-width: 320px;
}
.hero-left h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 1px;
  color: #23415d;
}
.goals {
  font-size: 1.07rem;
  margin-bottom: 26px;
}
.goals ul {
  margin: 8px 0 0 18px;
  padding: 0;
  font-weight: 600;
  color: #23415d;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: #23415d;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.2s;
  gap: 10px;
}
.cta-btn span { margin-left: 8px; }
.cta-btn:hover { background: #3a7ca5; }


@media (max-width: 600px) {
  .cta-btn {
    width: 100%;           /* full width on small screens */
    justify-content: center; /* center content inside the button */
    font-size: 0.95rem;    /* slightly smaller font */
    padding: 10px 0;       /* reduce horizontal padding */
  }
  .cta-btn span {
    margin-left: 4px;      /* reduce left margin for icon/text spacing */
  }
}



 /* Container for the entire Mission section */
    .mission-vision-section {
      padding: 40px 20px;
      background-color: #ffffff;
      font-family: Arial, sans-serif;
    }

    /* Row layout: image left, content right */
    .mission-row {
      display: flex;
      gap: 0px;/* 20px */
      align-items: stretch;
      flex-wrap: wrap;
    }

    /* Left image box */
    .mission-img-box {
      flex: 1;
      max-width: 50%;
    }

    .mission-img {
      width: 80%;
      height: 80%;
      object-fit: cover;
      border-radius: 40px;
    }

    /* Right content box */
    .mission-content {
      flex: 1;
    
      padding: 20px;
      border-radius: 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box;
    }

    /* Text styles inside the content */
    .mission-content h2 {
      font-size: 28px;
      margin-bottom: 15px;
      margin-top: -10px;
      color: #23415d;
    }

    .mission-content p {
      font-size: 18px;/*16px*/
      line-height: 1.6;
      color: #032d54;
    }

    /* Bottom-right mini image */
    .mission-mini-img {
      width: 120px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      float: right;
      margin-top: 20px;
    }

    /* Split layout for final paragraph */
    .mission-final-row {
      display: flex;
      gap: 20px;
      align-items: center;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .mission-final-text {
      flex: 1;
    }

    .mission-final-image {
      flex: 0 0 auto;
    }

    .mission-final-image img {
      width: 220px;
      
      border-radius: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .mission-row {
        flex-direction: column;
      }

      .mission-img-box,
      .mission-content {
        max-width: 100%;
      }

      .mission-mini-img {
        float: none;
        display: block;
        margin: 20px auto 0 auto;
      }

      .mission-final-row {
        flex-direction: column;
        align-items: flex-start;
      }

      .mission-final-image img {
        margin-top: 10px;
      }
    }

body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #ffffff;
    }

    .vision-section {
      padding: 10px 20px;/*40px 20px;*/
      background-color: #ffffff; /* white background */
    }

    .vision-row {
      display: flex;
      align-items: flex-start; /* Align top */
      justify-content: space-between;
      gap: 0px;/* 30px*/
      flex-wrap: wrap;
    }

    .vision-content {
      flex: 1;
      min-width: 280px;
    }

    .vision-content h2 {
      font-size: 32px;
      margin-bottom: 10px; /* reduced margin */
      margin-top: 0;
      color: #23415d;
    }

    .vision-content p {
      font-size: 20px;/* 18px*/
      line-height: 1.6;
      color: #23415d;
      margin-top: 0;
      
    }

    .vision-img-box {
      flex: 1;
      min-width: 280px;
      display: flex;
      justify-content: flex-end;
      align-items: flex-start;
    }

    .vision-img {
      max-width: 70%;
      height: 70%;
      border-radius: 0px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .vision-row {
        flex-direction: column;
        text-align: center;
      }

      .vision-img-box {
        justify-content: center;
        margin-top: 20px;
      }

      .vision-content h2 {
        font-size: 28px;
      }

      .vision-content p {
        font-size: 16px;
      }
    }
/* Responsive for tablets and phones */
@media (max-width: 1000px) {
  .mission-row, .vision-row {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .mission-img-box, .vision-img-box {
    align-items: center;
    min-width: 0;
    width: 100%;
  }
  .mission-img, .vision-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 18px;
  }
  .mission-mini-img {
    right: 8px;
    bottom: -18px;
    width: 70px;
    height: 40px;
  }
  .mission-content, .vision-content {
    margin: 0;
    min-width: 0;
    
  }
}



/* Quality & Safety */
.quality-safety-section {
  margin-top: 60px;
  position: relative;
}
.quality-policy-bg {
  background: url('images/Gemini_Generated_Image_xo2esexo2esexo2e.png') center/cover no-repeat;
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quality-overlay {
  color: #fff;
  width: 100%;
  padding: 16px 0; /* reduced from 32px to move content upward */
  text-align: center;
}

.quality-overlay h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 0; /* remove default heading margin */
}

.quality-overlay p {
  font-size: 1.4rem;
  margin-top: 5px; /* closer to h2 */
  
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23415d;
  margin: 0;
  padding: 0;
  background: #fff;
}

.safety-policy-box {
  display: flex;
  align-items: stretch;
  max-width: 1100px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -80px;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(35,65,93,0.25);
  background: #23415d;
  z-index: 5;
}

/* Left text section */
.safety-left {
  flex: 1 1 60%;
  min-width: 240px;
  padding: 20px;
}

.safety-left h3 {
  margin: 0 0 10px 0;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #fff;
}

.safety-left p {
  margin: 0;
  line-height: 1.4;
  font-size: 1.3rem;
  color: #eaf2f7;
}

/* Right image section */
.safety-right {
  flex: 0 0 320px;
}

.safety-right img {
  width: 120%;
  height: 220px; /* increased from 200px */
  object-fit: cover;
  display: block;
}

/* Tablet view */
@media (max-width: 1024px) {
  .safety-left {
    padding: 18px;
  }

  .safety-left h3 {
    font-size: 1.3rem;
  }

  .safety-left p {
    font-size: 0.9rem;
  }

  .safety-right img {
    height: 200px; /* increased from 180px */
  }
}

/* Mobile view */
@media (max-width: 900px) {
  .safety-policy-box {
    position: static;
    transform: none;
    margin: 20px auto 0 auto;
    flex-direction: column;
    max-width: 92%;
    text-align: center;
  }

  .safety-left {
    padding: 16px;
  }

  .safety-right {
    width: 100%;
  }

  .safety-right img {
    height: auto;
    max-height: 260px; /* increased from 240px */
  }
}
/* Footer */
.footer {
  background: #23415d;
  color: #fff;
  margin-top: 0px;
  padding: 48px 7vw 30px 7vw;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.footer-brand img {
  width: 110px;
  margin-bottom: 18px;
}
.footer-contacts {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contacts i {
  margin-right: 8px;
}

.footer-contacts a {
  text-decoration: none;
  color: inherit;
}

.footer-contacts a:hover {
  color: #ffffff; /* optional hover effect */
}

.footer-social {
  display: flex;
  gap: 21px;
  margin-top: 10px;
}
.footer-social a {
  color: #fff;
  font-size: 1.25rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #ffb400;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 34px;
  min-width: 340px;
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  text-decoration: none;
  color: inherit; /* keeps same color as before */
  margin: 0 10px; /* space between links */
}

.footer-nav a:hover {
  color: #ebeff2; /* or any highlight color */
}

.subscribe-box1 {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.subscribe-box1 input {
  padding: 7px 12px;
  border-radius: 4px;
  border: none;
  outline: none;
}
.subscribe-box1 button {
  background: #fff;
  color: #23415d;
  border: none;
  padding: 7px 18px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.subscribe-box1 button:hover {
  background: #ffb400;
  color: #fff;
}

/* Responsive for tablets (max-width: 1200px) */
@media (max-width: 1200px) {
  .header nav ul {
    margin-left: 100px;
    gap: 28px;
  }
  .footer-top {
    gap: 32px;
    flex-direction: column;
  }
}

/* Responsive for tablets and phones (max-width: 900px) */
@media (max-width: 900px) {
  .hero-bg-section {
    background: #fff;
    min-height: unset;
  }
  .hero-bg-section::after {
    display: none;
  }
  .hero-row,
  .mission-row,
  .vision-row {
    flex-direction: column;
    gap: 24px;
    padding: 30px 5vw 0 5vw;
    align-items: stretch;
  }
  .header nav ul {
    margin-left: 0;
    gap: 18px;
    flex-wrap: wrap;
  }
  .mission-img-box,
  .vision-img-box {
    align-items: center;
    min-width: 0;
  }
  .mission-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 18px;
  }
  .mission-mini-img {
    right: 8px;
    bottom: -16px;
    width: 70px;
    height: 40px;
  }
  .mission-content,
  .vision-content {
    margin: 0;
    min-width: 0;
  }
  .vision-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 18px;
  }
  .footer-links {
    min-width: 0;
    width: 100%;
  }
  .footer {
    padding: 32px 2vw 18px 2vw;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-brand img {
    margin-bottom: 8px;
  }
  .footer-social {
    margin-top: 0;
  }
  .safety-policy-box {
    position: static;
    margin: 30px auto 0 auto;
    transform: none;
    max-width: 100%;
  }
  .quality-policy-bg {
    min-height: 120px;
    padding: 14px 0;
  }
  .safety-content img {
    width: 100px;
    height: auto;
  }
}

/* Responsive for small phones (max-width: 600px) */
@media (max-width: 600px) {
  .header {
    padding: 12px 2vw 0 2vw;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-row,
  .mission-row,
  .vision-row {
    padding: 18px 1vw 0 1vw;
    gap: 12px;
  }
  .mission-img, .vision-img {
    max-width: 100%;
    border-radius: 12px;
  }
  .mission-mini-img {
    width: 48px;
    height: 28px;
    right: 4px;
    bottom: -10px;
    border-radius: 8px;
  }
  .cta-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.98rem;
    padding: 8px 0;
  }
  .footer-links {
    gap: 14px;
  }
  .footer {
    padding: 16px 1vw 8px 1vw;
  }
}
/* Arrange input and button inline */
.underline-style {
  display: flex;
  align-items: center;
  gap: 10px; /* space between input and button */
}

.underline-style input {
  flex: 1; /* take remaining space */
  border: none;
  border-bottom: 2px solid #fff;
  background: transparent;
  padding: 5px 0;
  color: #fff;
  outline: none;
}

.underline-style input::placeholder {
  color: rgba(255,255,255,0.7);
}

.underline-style button {
  background: #fff;
  color: #23415d;
  border: none;
  padding: 7px 18px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.underline-style button:hover {
  background: #ffb400;
  color: #fff;
}
.underline-line {
  width: auto;          /* length of the line */
  height: 2px;           /* thickness */
  background-color: #d3d9de; /* color of the underline */
  margin: 10px 0;        /* vertical spacing */
}

.nav-search-wrapper {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 16px 20px;
  gap: 40px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  flex-grow: 0;
  border-radius: 0px;       /* optional rounded corners */
  box-sizing: border-box;    /* include padding in width */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* subtle shadow */
}

@media (max-width: 900px) {
  .nav-search-wrapper {
    max-width: 100%;
    padding: 12px 15px;
    gap: 20px;
    flex-wrap: wrap;          /* allow wrapping */
  }
}

@media (max-width: 600px) {
  .nav-search-wrapper {
    flex-direction: column;   /* stack items vertically */
    align-items: stretch;
    padding: 10px 12px;
    gap: 16px;
  }
}



    .nav-search-wrapper nav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;  /* push menu items to the right */
  align-items: center;
  
}

.nav-search-wrapper nav ul {
  display: flex;
  gap: 110px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 500;
  color: #23415d;
}

    .nav-search-wrapper nav ul li {
      cursor: pointer;
      padding: 6px 0;
      border-bottom: 2px solid transparent;
      transition: border 0.2s;
      background: none;
    }

    .nav-search-wrapper nav ul li.active,
    .nav-search-wrapper nav ul li:hover {
      border-bottom: 2px solid #23415d;
    }

    .nav-search-wrapper .search-bar {
      background: #f2f2f2;
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .nav-search-wrapper .search-bar input {
      border: none;
      padding: 8px 12px;
      outline: none;
      background: transparent;
    }

    .nav-search-wrapper .search-bar button {
      background: #23415d;
      color: #fff;
      border: none;
      padding: 8px 16px;
      cursor: pointer;
    }



    /* Large screens: keep as is */

/* Tablets and medium screens (900px and below) */
@media (max-width: 900px) {
  .nav-search-wrapper {
    flex-wrap: wrap;
    gap: 20px;
    padding: 12px 16px;
    max-width: 100%;
  }

  .nav-search-wrapper nav {
    flex-grow: 1;
    justify-content: center;  /* center nav menu */
    margin: 0 auto;
    width: 100%;
  }

  .nav-search-wrapper nav ul {
    gap: 40px; /* reduce gap between nav items */
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-search-wrapper nav ul li {
    padding: 8px 12px;
    font-size: 14px;
  }

  .nav-search-wrapper .search-bar {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .nav-search-wrapper .search-bar input {
    font-size: 14px;
    padding: 8px 10px;
  }

  .nav-search-wrapper .search-bar button {
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* Small phones (600px and below) */
@media (max-width: 600px) {
  .nav-search-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 10px 12px;
  }

  .nav-search-wrapper nav {
    justify-content: center;
    margin: 0;
    width: 100%;
  }

  .nav-search-wrapper nav ul {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-search-wrapper nav ul li {
    font-size: 13px;
    padding: 8px 6px;
  }

  .nav-search-wrapper .search-bar {
    width: 100%;
    max-width: 100%;
  }

  .nav-search-wrapper .search-bar input {
    font-size: 13px;
    padding: 6px 8px;
  }

  .nav-search-wrapper .search-bar button {
    padding: 6px 10px;
    font-size: 13px;
  }
}

